Interface AttachRolePolicyRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<AttachRolePolicyRequest.Builder,AttachRolePolicyRequest>,IamRequest.Builder,SdkBuilder<AttachRolePolicyRequest.Builder,AttachRolePolicyRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- AttachRolePolicyRequest
public static interface AttachRolePolicyRequest.Builder extends IamRequest.Builder, SdkPojo, CopyableBuilder<AttachRolePolicyRequest.Builder,AttachRolePolicyRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AttachRolePolicyRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)AttachRolePolicyRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)AttachRolePolicyRequest.BuilderpolicyArn(String policyArn)The Amazon Resource Name (ARN) of the IAM policy you want to attach.AttachRolePolicyRequest.BuilderroleName(String roleName)The name (friendly name, not ARN) of the role to attach the policy to.-
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, sdkFields
-
-
-
-
Method Detail
-
roleName
AttachRolePolicyRequest.Builder roleName(String roleName)
The name (friendly name, not ARN) of the role to attach the policy to.
This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
- Parameters:
roleName- The name (friendly name, not ARN) of the role to attach the policy to.This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
policyArn
AttachRolePolicyRequest.Builder policyArn(String policyArn)
The Amazon Resource Name (ARN) of the IAM policy you want to attach.
For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.
- Parameters:
policyArn- The Amazon Resource Name (ARN) of the IAM policy you want to attach.For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
AttachRolePolicyRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
AttachRolePolicyRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-