Interface UpdateTrustedTokenIssuerRequest.Builder
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<UpdateTrustedTokenIssuerRequest.Builder,
,UpdateTrustedTokenIssuerRequest> SdkBuilder<UpdateTrustedTokenIssuerRequest.Builder,
,UpdateTrustedTokenIssuerRequest> SdkPojo
,SdkRequest.Builder
,SsoAdminRequest.Builder
- Enclosing class:
UpdateTrustedTokenIssuerRequest
@Mutable
@NotThreadSafe
public static interface UpdateTrustedTokenIssuerRequest.Builder
extends SsoAdminRequest.Builder, SdkPojo, CopyableBuilder<UpdateTrustedTokenIssuerRequest.Builder,UpdateTrustedTokenIssuerRequest>
-
Method Summary
Modifier and TypeMethodDescriptionSpecifies the updated name to be applied to the trusted token issuer configuration.overrideConfiguration
(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Add an optional request override configuration.overrideConfiguration
(AwsRequestOverrideConfiguration overrideConfiguration) Add an optional request override configuration.trustedTokenIssuerArn
(String trustedTokenIssuerArn) Specifies the ARN of the trusted token issuer configuration that you want to update.trustedTokenIssuerConfiguration
(Consumer<TrustedTokenIssuerUpdateConfiguration.Builder> trustedTokenIssuerConfiguration) Specifies a structure with settings to apply to the specified trusted token issuer.trustedTokenIssuerConfiguration
(TrustedTokenIssuerUpdateConfiguration trustedTokenIssuerConfiguration) Specifies a structure with settings to apply to the specified trusted token issuer.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, sdkFieldNameToField, sdkFields
Methods inherited from interface software.amazon.awssdk.services.ssoadmin.model.SsoAdminRequest.Builder
build
-
Method Details
-
trustedTokenIssuerArn
Specifies the ARN of the trusted token issuer configuration that you want to update.
- Parameters:
trustedTokenIssuerArn
- Specifies the ARN of the trusted token issuer configuration that you want to update.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
Specifies the updated name to be applied to the trusted token issuer configuration.
- Parameters:
name
- Specifies the updated name to be applied to the trusted token issuer configuration.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
trustedTokenIssuerConfiguration
UpdateTrustedTokenIssuerRequest.Builder trustedTokenIssuerConfiguration(TrustedTokenIssuerUpdateConfiguration trustedTokenIssuerConfiguration) Specifies a structure with settings to apply to the specified trusted token issuer. The settings that you can provide are determined by the type of the trusted token issuer that you are updating.
- Parameters:
trustedTokenIssuerConfiguration
- Specifies a structure with settings to apply to the specified trusted token issuer. The settings that you can provide are determined by the type of the trusted token issuer that you are updating.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
trustedTokenIssuerConfiguration
default UpdateTrustedTokenIssuerRequest.Builder trustedTokenIssuerConfiguration(Consumer<TrustedTokenIssuerUpdateConfiguration.Builder> trustedTokenIssuerConfiguration) Specifies a structure with settings to apply to the specified trusted token issuer. The settings that you can provide are determined by the type of the trusted token issuer that you are updating.
This is a convenience method that creates an instance of theTrustedTokenIssuerUpdateConfiguration.Builder
avoiding the need to create one manually viaTrustedTokenIssuerUpdateConfiguration.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed totrustedTokenIssuerConfiguration(TrustedTokenIssuerUpdateConfiguration)
.- Parameters:
trustedTokenIssuerConfiguration
- a consumer that will call methods onTrustedTokenIssuerUpdateConfiguration.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
overrideConfiguration
UpdateTrustedTokenIssuerRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
overrideConfiguration
- The override configuration.- Returns:
- This object for method chaining.
-
overrideConfiguration
UpdateTrustedTokenIssuerRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) Description copied from interface:AwsRequest.Builder
Add an optional request override configuration.- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
- Parameters:
builderConsumer
- AConsumer
to which an emptyAwsRequestOverrideConfiguration.Builder
will be given.- Returns:
- This object for method chaining.
-