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.BuilderapplicationArn(String applicationArn)Specifies the ARN of the application to update.default PutApplicationGrantRequest.Buildergrant(Consumer<Grant.Builder> grant)Specifies a structure that describes the grant to update.PutApplicationGrantRequest.Buildergrant(Grant grant)Specifies a structure that describes the grant to update.PutApplicationGrantRequest.BuildergrantType(String grantType)Specifies the type of grant to update.PutApplicationGrantRequest.BuildergrantType(GrantType grantType)Specifies the type of grant to update.PutApplicationGrantRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)PutApplicationGrantRequest.BuilderoverrideConfiguration(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.Builderavoiding the need to create one manually viaGrant.builder().When the
Consumercompletes,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:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
PutApplicationGrantRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-