Interface UpdateSamlProviderRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UpdateSamlProviderRequest.Builder,UpdateSamlProviderRequest>,IamRequest.Builder,SdkBuilder<UpdateSamlProviderRequest.Builder,UpdateSamlProviderRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateSamlProviderRequest
@Mutable @NotThreadSafe public static interface UpdateSamlProviderRequest.Builder extends IamRequest.Builder, SdkPojo, CopyableBuilder<UpdateSamlProviderRequest.Builder,UpdateSamlProviderRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UpdateSamlProviderRequest.BuilderaddPrivateKey(String addPrivateKey)Specifies the new private key from your external identity provider.UpdateSamlProviderRequest.BuilderassertionEncryptionMode(String assertionEncryptionMode)Specifies the encryption setting for the SAML provider.UpdateSamlProviderRequest.BuilderassertionEncryptionMode(AssertionEncryptionModeType assertionEncryptionMode)Specifies the encryption setting for the SAML provider.UpdateSamlProviderRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateSamlProviderRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)UpdateSamlProviderRequest.BuilderremovePrivateKey(String removePrivateKey)The Key ID of the private key to remove.UpdateSamlProviderRequest.BuildersamlMetadataDocument(String samlMetadataDocument)An XML document generated by an identity provider (IdP) that supports SAML 2.0.UpdateSamlProviderRequest.BuildersamlProviderArn(String samlProviderArn)The Amazon Resource Name (ARN) of the SAML provider to update.-
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
-
samlMetadataDocument
UpdateSamlProviderRequest.Builder samlMetadataDocument(String samlMetadataDocument)
An XML document generated by an identity provider (IdP) that supports SAML 2.0. The document includes the issuer's name, expiration information, and keys that can be used to validate the SAML authentication response (assertions) that are received from the IdP. You must generate the metadata document using the identity management software that is used as your IdP.
- Parameters:
samlMetadataDocument- An XML document generated by an identity provider (IdP) that supports SAML 2.0. The document includes the issuer's name, expiration information, and keys that can be used to validate the SAML authentication response (assertions) that are received from the IdP. You must generate the metadata document using the identity management software that is used as your IdP.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
samlProviderArn
UpdateSamlProviderRequest.Builder samlProviderArn(String samlProviderArn)
The Amazon Resource Name (ARN) of the SAML provider to update.
For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.
- Parameters:
samlProviderArn- The Amazon Resource Name (ARN) of the SAML provider to update.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.
-
assertionEncryptionMode
UpdateSamlProviderRequest.Builder assertionEncryptionMode(String assertionEncryptionMode)
Specifies the encryption setting for the SAML provider.
- Parameters:
assertionEncryptionMode- Specifies the encryption setting for the SAML provider.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AssertionEncryptionModeType,AssertionEncryptionModeType
-
assertionEncryptionMode
UpdateSamlProviderRequest.Builder assertionEncryptionMode(AssertionEncryptionModeType assertionEncryptionMode)
Specifies the encryption setting for the SAML provider.
- Parameters:
assertionEncryptionMode- Specifies the encryption setting for the SAML provider.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AssertionEncryptionModeType,AssertionEncryptionModeType
-
addPrivateKey
UpdateSamlProviderRequest.Builder addPrivateKey(String addPrivateKey)
Specifies the new private key from your external identity provider. The private key must be a .pem file that uses AES-GCM or AES-CBC encryption algorithm to decrypt SAML assertions.
- Parameters:
addPrivateKey- Specifies the new private key from your external identity provider. The private key must be a .pem file that uses AES-GCM or AES-CBC encryption algorithm to decrypt SAML assertions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
removePrivateKey
UpdateSamlProviderRequest.Builder removePrivateKey(String removePrivateKey)
The Key ID of the private key to remove.
- Parameters:
removePrivateKey- The Key ID of the private key to remove.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
UpdateSamlProviderRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateSamlProviderRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-