Interface CfnSAMLProviderProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSAMLProviderProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-21T06:34:09.242Z")
@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() .samlMetadataDocument("samlMetadataDocument") // the properties below are optional .name("name") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSAMLProviderProps
static final class
An implementation forCfnSAMLProviderProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnSAMLProviderProps.Builder
builder()
default String
getName()
The name of the provider to create.An 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
-
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:
-
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:
-
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.Builder
ofCfnSAMLProviderProps
-