@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:39.743Z") @Stability(value=Stable) public interface CfnSAMLProviderProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnSAMLProviderProps.Builder
A builder for
CfnSAMLProviderProps |
static class |
CfnSAMLProviderProps.Jsii$Proxy
An implementation for
CfnSAMLProviderProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnSAMLProviderProps.Builder |
builder() |
default String |
getName()
The name of the provider to create.
|
String |
getSamlMetadataDocument()
An XML document generated by an identity provider (IdP) that supports SAML 2.0.
|
default List<CfnTag> |
getTags()
A list of tags that you want to attach to the new IAM SAML provider.
|
@Stability(value=Stable) @NotNull String getSamlMetadataDocument()
For more information, see About SAML 2.0-based federation in the IAM User Guide
@Stability(value=Stable) @Nullable default String getName()
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: _+=,.@-
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
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.
@Stability(value=Stable) static CfnSAMLProviderProps.Builder builder()
CfnSAMLProviderProps.Builder of CfnSAMLProviderPropsCopyright © 2022. All rights reserved.