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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIdentitySource.IdentitySourceParametersPropertystatic final classAn implementation forCfnIdentitySource.IdentitySourceParametersProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getIamIdentityCenter
AWS IAM Identity Center credentials.Returns union: either
IResolvableorCfnIdentitySource.IamIdentityCenterProperty- See Also:
-
builder
-