Interface AttachGroupPolicyRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<AttachGroupPolicyRequest.Builder,AttachGroupPolicyRequest>
,IamRequest.Builder
,SdkBuilder<AttachGroupPolicyRequest.Builder,AttachGroupPolicyRequest>
,SdkPojo
,SdkRequest.Builder
- Enclosing class:
- AttachGroupPolicyRequest
public static interface AttachGroupPolicyRequest.Builder extends IamRequest.Builder, SdkPojo, CopyableBuilder<AttachGroupPolicyRequest.Builder,AttachGroupPolicyRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AttachGroupPolicyRequest.Builder
groupName(String groupName)
The name (friendly name, not ARN) of the group to attach the policy to.AttachGroupPolicyRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
AttachGroupPolicyRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
AttachGroupPolicyRequest.Builder
policyArn(String policyArn)
The Amazon Resource Name (ARN) of the IAM policy you want to attach.-
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
-
groupName
AttachGroupPolicyRequest.Builder groupName(String groupName)
The name (friendly name, not ARN) of the group 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:
groupName
- The name (friendly name, not ARN) of the group 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
AttachGroupPolicyRequest.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
AttachGroupPolicyRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
AttachGroupPolicyRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-