Class SamlProvider
java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.core.Construct
software.amazon.awscdk.core.Resource
software.amazon.awscdk.services.iam.SamlProvider
- All Implemented Interfaces:
IConstruct,IDependable,IResource,ISamlProvider,software.amazon.jsii.JsiiSerializable,software.constructs.IConstruct
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:29:57.372Z")
@Stability(Stable)
public class SamlProvider
extends Resource
implements ISamlProvider
A SAML provider.
Example:
SamlProvider provider = SamlProvider.Builder.create(this, "Provider")
.metadataDocument(SamlMetadataDocument.fromFile("/path/to/saml-metadata-document.xml"))
.build();
Role.Builder.create(this, "Role")
.assumedBy(new SamlConsolePrincipal(provider))
.build();
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationModeNested classes/interfaces inherited from interface software.amazon.awscdk.core.IConstruct
IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.constructs.IConstruct
software.constructs.IConstruct.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.core.IResource
IResource.Jsii$DefaultNested classes/interfaces inherited from interface software.amazon.awscdk.services.iam.ISamlProvider
ISamlProvider.Jsii$Default, ISamlProvider.Jsii$Proxy -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedSamlProvider(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protectedSamlProvider(software.amazon.jsii.JsiiObjectRef objRef) SamlProvider(software.constructs.Construct scope, String id, SamlProviderProps props) -
Method Summary
Modifier and TypeMethodDescriptionstatic ISamlProviderfromSamlProviderArn(software.constructs.Construct scope, String id, String samlProviderArn) Import an existing provider.The Amazon Resource Name (ARN) of the provider.Methods inherited from class software.amazon.awscdk.core.Resource
applyRemovalPolicy, generatePhysicalName, getEnv, getPhysicalName, getResourceArnAttribute, getResourceNameAttribute, getStack, isResourceMethods inherited from class software.amazon.awscdk.core.Construct
getNode, isConstruct, onPrepare, onSynthesize, onValidate, prepare, synthesize, validateMethods inherited from class software.constructs.Construct
toStringMethods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSetMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface software.amazon.awscdk.core.IConstruct
getNodeMethods inherited from interface software.amazon.awscdk.core.IResource
applyRemovalPolicy, getEnv, getStackMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
SamlProvider
protected SamlProvider(software.amazon.jsii.JsiiObjectRef objRef) -
SamlProvider
protected SamlProvider(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
SamlProvider
@Stability(Stable) public SamlProvider(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull SamlProviderProps props) - Parameters:
scope- This parameter is required.id- This parameter is required.props- This parameter is required.
-
-
Method Details
-
fromSamlProviderArn
@Stability(Stable) @NotNull public static ISamlProvider fromSamlProviderArn(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull String samlProviderArn) Import an existing provider.- Parameters:
scope- This parameter is required.id- This parameter is required.samlProviderArn- This parameter is required.
-
getSamlProviderArn
The Amazon Resource Name (ARN) of the provider.- Specified by:
getSamlProviderArnin interfaceISamlProvider
-