CfnApplicationProps
- class aws_cdk.aws_accountaccess.CfnApplicationProps(*, identity_source, tags=None)
Bases:
objectProperties for defining a
CfnApplication.- Parameters:
identity_source (
Union[IResolvable,IdentitySourceProperty,Dict[str,Any]])tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – An array of key-value pairs to apply to this resource.
- See:
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_accountaccess as accountaccess cfn_application_props = accountaccess.CfnApplicationProps( identity_source=accountaccess.CfnApplication.IdentitySourceProperty( identity_center=accountaccess.CfnApplication.IdentityCenterProperty( instance_arn="instanceArn", # the properties below are optional application_arn="applicationArn" ) ), # the properties below are optional tags=[CfnTag( key="key", value="value" )] )
Attributes
- identity_source
-
- Type:
see
- tags
An array of key-value pairs to apply to this resource.