Interface CfnSAMLProviderProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSAMLProviderProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.106.0 (build e852934)",
date="2025-03-12T01:36:39.440Z")
@Stability(Stable)
public interface CfnSAMLProviderProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnSAMLProvider.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.iam.*;
CfnSAMLProviderProps cfnSAMLProviderProps = CfnSAMLProviderProps.builder()
.addPrivateKey("addPrivateKey")
.assertionEncryptionMode("assertionEncryptionMode")
.name("name")
.privateKeyList(List.of(SAMLPrivateKeyProperty.builder()
.keyId("keyId")
.timestamp("timestamp")
.build()))
.removePrivateKey("removePrivateKey")
.samlMetadataDocument("samlMetadataDocument")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSAMLProviderPropsstatic final classAn implementation forCfnSAMLProviderProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnSAMLProviderProps.Builderbuilder()default StringThe private key from your external identity provider.default StringThe encryption setting for the SAML provider.default StringgetName()The name of the provider to create.default Objectdefault StringThe Key ID of the private key to remove.default StringAn XML document generated by an identity provider (IdP) that supports SAML 2.0.getTags()A list of tags that you want to attach to the new IAM SAML provider.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAddPrivateKey
The private key from your external identity provider.- See Also:
-
getAssertionEncryptionMode
The encryption setting for the SAML provider.- See Also:
-
getName
The name of the provider to create.This parameter allows (through its regex pattern ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-
- See Also:
-
getPrivateKeyList
- See Also:
-
getRemovePrivateKey
The Key ID of the private key to remove.- See Also:
-
getSamlMetadataDocument
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 organization's IdP.For more information, see About SAML 2.0-based federation in the IAM User Guide
- See Also:
-
getTags
A list of tags that you want to attach to the new IAM SAML provider.Each tag consists of a key name and an associated value. For more information about tagging, see Tagging IAM resources in the IAM User Guide .
If any one of the tags is invalid or if you exceed the allowed maximum number of tags, then the entire request fails and the resource is not created.
- See Also:
-
builder
- Returns:
- a
CfnSAMLProviderProps.BuilderofCfnSAMLProviderProps
-