Skip to content

Add duration_seconds to list of profile properties #2812

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Nov 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changes/next-release/feature-AWSSDKforJavav2-7936e4e.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"type": "feature",
"category": "AWS SDK for Java v2",
"contributor": "abrooksv",
"description": "Added the profile key `duration_seconds` to class `ProfileProperty`"
}
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@ public final class ProfileProperty {
*/
public static final String ROLE_SESSION_NAME = "role_session_name";

/**
* Property name for specifying how long in seconds to assume the role
*/
public static final String DURATION_SECONDS = "duration_seconds";

/**
* Property name for specifying the IAM role external id
*/
Expand Down