Interface PutApplicationGrantRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<PutApplicationGrantRequest.Builder,PutApplicationGrantRequest>
,SdkBuilder<PutApplicationGrantRequest.Builder,PutApplicationGrantRequest>
,SdkPojo
,SdkRequest.Builder
,SsoAdminRequest.Builder
- Enclosing class:
- PutApplicationGrantRequest
public static interface PutApplicationGrantRequest.Builder extends SsoAdminRequest.Builder, SdkPojo, CopyableBuilder<PutApplicationGrantRequest.Builder,PutApplicationGrantRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description PutApplicationGrantRequest.Builder
applicationArn(String applicationArn)
Specifies the ARN of the application to update.default PutApplicationGrantRequest.Builder
grant(Consumer<Grant.Builder> grant)
Specifies a structure that describes the grant to update.PutApplicationGrantRequest.Builder
grant(Grant grant)
Specifies a structure that describes the grant to update.PutApplicationGrantRequest.Builder
grantType(String grantType)
Specifies the type of grant to update.PutApplicationGrantRequest.Builder
grantType(GrantType grantType)
Specifies the type of grant to update.PutApplicationGrantRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
PutApplicationGrantRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
-
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.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
Methods inherited from interface software.amazon.awssdk.services.ssoadmin.model.SsoAdminRequest.Builder
build
-
-
-
-
Method Detail
-
applicationArn
PutApplicationGrantRequest.Builder applicationArn(String applicationArn)
Specifies the ARN of the application to update.
- Parameters:
applicationArn
- Specifies the ARN of the application to update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
grant
PutApplicationGrantRequest.Builder grant(Grant grant)
Specifies a structure that describes the grant to update.
- Parameters:
grant
- Specifies a structure that describes the grant to update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
grant
default PutApplicationGrantRequest.Builder grant(Consumer<Grant.Builder> grant)
Specifies a structure that describes the grant to update.
This is a convenience method that creates an instance of theGrant.Builder
avoiding the need to create one manually viaGrant.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed togrant(Grant)
.- Parameters:
grant
- a consumer that will call methods onGrant.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
grant(Grant)
-
grantType
PutApplicationGrantRequest.Builder grantType(String grantType)
Specifies the type of grant to update.
-
grantType
PutApplicationGrantRequest.Builder grantType(GrantType grantType)
Specifies the type of grant to update.
-
overrideConfiguration
PutApplicationGrantRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
PutApplicationGrantRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-