Interface UpdateRoleRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UpdateRoleRequest.Builder,UpdateRoleRequest>,IamRequest.Builder,SdkBuilder<UpdateRoleRequest.Builder,UpdateRoleRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateRoleRequest
@Mutable @NotThreadSafe public static interface UpdateRoleRequest.Builder extends IamRequest.Builder, SdkPojo, CopyableBuilder<UpdateRoleRequest.Builder,UpdateRoleRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateRoleRequest.Builderdescription(String description)The new description that you want to apply to the specified role.UpdateRoleRequest.BuildermaxSessionDuration(Integer maxSessionDuration)The maximum session duration (in seconds) that you want to set for the specified role.UpdateRoleRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateRoleRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)UpdateRoleRequest.BuilderroleName(String roleName)The name of the role that you want to modify.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.iam.model.IamRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
roleName
UpdateRoleRequest.Builder roleName(String roleName)
The name of the role that you want to modify.
- Parameters:
roleName- The name of the role that you want to modify.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
UpdateRoleRequest.Builder description(String description)
The new description that you want to apply to the specified role.
- Parameters:
description- The new description that you want to apply to the specified role.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
maxSessionDuration
UpdateRoleRequest.Builder maxSessionDuration(Integer maxSessionDuration)
The maximum session duration (in seconds) that you want to set for the specified role. If you do not specify a value for this setting, the default value of one hour is applied. This setting can have a value from 1 hour to 12 hours.
Anyone who assumes the role from the CLI or API can use the
DurationSecondsAPI parameter or theduration-secondsCLI parameter to request a longer session. TheMaxSessionDurationsetting determines the maximum duration that can be requested using theDurationSecondsparameter. If users don't specify a value for theDurationSecondsparameter, their security credentials are valid for one hour by default. This applies when you use theAssumeRole*API operations or theassume-role*CLI operations but does not apply when you use those operations to create a console URL. For more information, see Using IAM roles in the IAM User Guide.IAM role credentials provided by Amazon EC2 instances assigned to the role are not subject to the specified maximum session duration.
- Parameters:
maxSessionDuration- The maximum session duration (in seconds) that you want to set for the specified role. If you do not specify a value for this setting, the default value of one hour is applied. This setting can have a value from 1 hour to 12 hours.Anyone who assumes the role from the CLI or API can use the
DurationSecondsAPI parameter or theduration-secondsCLI parameter to request a longer session. TheMaxSessionDurationsetting determines the maximum duration that can be requested using theDurationSecondsparameter. If users don't specify a value for theDurationSecondsparameter, their security credentials are valid for one hour by default. This applies when you use theAssumeRole*API operations or theassume-role*CLI operations but does not apply when you use those operations to create a console URL. For more information, see Using IAM roles in the IAM User Guide.IAM role credentials provided by Amazon EC2 instances assigned to the role are not subject to the specified maximum session duration.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
UpdateRoleRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateRoleRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-