Interface UpdateAppAuthorizationRequest.Builder
-
- All Superinterfaces:
AppFabricRequest.Builder,AwsRequest.Builder,Buildable,CopyableBuilder<UpdateAppAuthorizationRequest.Builder,UpdateAppAuthorizationRequest>,SdkBuilder<UpdateAppAuthorizationRequest.Builder,UpdateAppAuthorizationRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateAppAuthorizationRequest
public static interface UpdateAppAuthorizationRequest.Builder extends AppFabricRequest.Builder, SdkPojo, CopyableBuilder<UpdateAppAuthorizationRequest.Builder,UpdateAppAuthorizationRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateAppAuthorizationRequest.BuilderappAuthorizationIdentifier(String appAuthorizationIdentifier)The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app authorization to use for the request.UpdateAppAuthorizationRequest.BuilderappBundleIdentifier(String appBundleIdentifier)The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.default UpdateAppAuthorizationRequest.Buildercredential(Consumer<Credential.Builder> credential)Contains credentials for the application, such as an API key or OAuth2 client ID and secret.UpdateAppAuthorizationRequest.Buildercredential(Credential credential)Contains credentials for the application, such as an API key or OAuth2 client ID and secret.UpdateAppAuthorizationRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateAppAuthorizationRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)default UpdateAppAuthorizationRequest.Buildertenant(Consumer<Tenant.Builder> tenant)Contains information about an application tenant, such as the application display name and identifier.UpdateAppAuthorizationRequest.Buildertenant(Tenant tenant)Contains information about an application tenant, such as the application display name and identifier.-
Methods inherited from interface software.amazon.awssdk.services.appfabric.model.AppFabricRequest.Builder
build
-
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
-
-
-
-
Method Detail
-
appBundleIdentifier
UpdateAppAuthorizationRequest.Builder appBundleIdentifier(String appBundleIdentifier)
The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.
- Parameters:
appBundleIdentifier- The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app bundle to use for the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
appAuthorizationIdentifier
UpdateAppAuthorizationRequest.Builder appAuthorizationIdentifier(String appAuthorizationIdentifier)
The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app authorization to use for the request.
- Parameters:
appAuthorizationIdentifier- The Amazon Resource Name (ARN) or Universal Unique Identifier (UUID) of the app authorization to use for the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
credential
UpdateAppAuthorizationRequest.Builder credential(Credential credential)
Contains credentials for the application, such as an API key or OAuth2 client ID and secret.
Specify credentials that match the authorization type of the app authorization to update. For example, if the authorization type of the app authorization is OAuth2 (
oauth2), then you should provide only the OAuth2 credentials.- Parameters:
credential- Contains credentials for the application, such as an API key or OAuth2 client ID and secret.Specify credentials that match the authorization type of the app authorization to update. For example, if the authorization type of the app authorization is OAuth2 (
oauth2), then you should provide only the OAuth2 credentials.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
credential
default UpdateAppAuthorizationRequest.Builder credential(Consumer<Credential.Builder> credential)
Contains credentials for the application, such as an API key or OAuth2 client ID and secret.
Specify credentials that match the authorization type of the app authorization to update. For example, if the authorization type of the app authorization is OAuth2 (
This is a convenience method that creates an instance of theoauth2), then you should provide only the OAuth2 credentials.Credential.Builderavoiding the need to create one manually viaCredential.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocredential(Credential).- Parameters:
credential- a consumer that will call methods onCredential.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
credential(Credential)
-
tenant
UpdateAppAuthorizationRequest.Builder tenant(Tenant tenant)
Contains information about an application tenant, such as the application display name and identifier.
- Parameters:
tenant- Contains information about an application tenant, such as the application display name and identifier.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tenant
default UpdateAppAuthorizationRequest.Builder tenant(Consumer<Tenant.Builder> tenant)
Contains information about an application tenant, such as the application display name and identifier.
This is a convenience method that creates an instance of theTenant.Builderavoiding the need to create one manually viaTenant.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed totenant(Tenant).- Parameters:
tenant- a consumer that will call methods onTenant.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
tenant(Tenant)
-
overrideConfiguration
UpdateAppAuthorizationRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateAppAuthorizationRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-