Class CfnIdentitySourcePropsMixin.IdentitySourceParametersProperty
Contains details for the resource that provides identities to the identity source.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.MPA.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnIdentitySourcePropsMixin.IdentitySourceParametersProperty : CfnIdentitySourcePropsMixin.IIdentitySourceParametersProperty
Syntax (vb)
Public Class CfnIdentitySourcePropsMixin.IdentitySourceParametersProperty Implements CfnIdentitySourcePropsMixin.IIdentitySourceParametersProperty
Remarks
For example, an IAM Identity Center instance.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.MPA.Mixins;
var identitySourceParametersProperty = new IdentitySourceParametersProperty {
IamIdentityCenter = new IamIdentityCenterProperty {
ApprovalPortalUrl = "approvalPortalUrl",
InstanceArn = "instanceArn",
Region = "region"
}
};
Synopsis
Constructors
| IdentitySourceParametersProperty() | Contains details for the resource that provides identities to the identity source. |
Properties
| IamIdentityCenter | AWS IAM Identity Center credentials. |
Constructors
IdentitySourceParametersProperty()
Contains details for the resource that provides identities to the identity source.
public IdentitySourceParametersProperty()
Remarks
For example, an IAM Identity Center instance.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.MPA.Mixins;
var identitySourceParametersProperty = new IdentitySourceParametersProperty {
IamIdentityCenter = new IamIdentityCenterProperty {
ApprovalPortalUrl = "approvalPortalUrl",
InstanceArn = "instanceArn",
Region = "region"
}
};
Properties
IamIdentityCenter
AWS IAM Identity Center credentials.
public object? IamIdentityCenter { get; set; }