Interface CfnIdentitySource.IdentitySourceParametersProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnIdentitySource.IdentitySourceParametersProperty.Jsii$Proxy
Enclosing class:
CfnIdentitySource

@Stability(Stable) public static interface CfnIdentitySource.IdentitySourceParametersProperty extends software.amazon.jsii.JsiiSerializable
Contains details for the resource that provides identities to the identity source.

For example, an IAM Identity Center instance.

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.mpa.*;
 IdentitySourceParametersProperty identitySourceParametersProperty = IdentitySourceParametersProperty.builder()
         .iamIdentityCenter(IamIdentityCenterProperty.builder()
                 .instanceArn("instanceArn")
                 .region("region")
                 // the properties below are optional
                 .approvalPortalUrl("approvalPortalUrl")
                 .build())
         .build();
 

See Also: