Class CfnApplicationProps
Properties for defining a CfnApplication.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.AccountAccess
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnApplicationProps : ICfnApplicationProps
Syntax (vb)
Public Class CfnApplicationProps Implements ICfnApplicationProps
Remarks
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.AWS.AccountAccess;
var cfnApplicationProps = new CfnApplicationProps {
IdentitySource = new IdentitySourceProperty {
IdentityCenter = new IdentityCenterProperty {
InstanceArn = "instanceArn",
// the properties below are optional
ApplicationArn = "applicationArn"
}
},
// the properties below are optional
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
| CfnApplicationProps() | Properties for defining a |
Properties
| IdentitySource | Properties for defining a |
| Tags | An array of key-value pairs to apply to this resource. |
Constructors
CfnApplicationProps()
Properties for defining a CfnApplication.
public CfnApplicationProps()
Remarks
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.AWS.AccountAccess;
var cfnApplicationProps = new CfnApplicationProps {
IdentitySource = new IdentitySourceProperty {
IdentityCenter = new IdentityCenterProperty {
InstanceArn = "instanceArn",
// the properties below are optional
ApplicationArn = "applicationArn"
}
},
// the properties below are optional
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Properties
IdentitySource
Properties for defining a CfnApplication.
public object IdentitySource { get; set; }
Property Value
Remarks
Tags
An array of key-value pairs to apply to this resource.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]