CfnIdentitySourceMixinProps
- class aws_cdk.mixins_preview.aws_mpa.mixins.CfnIdentitySourceMixinProps(*, identity_source_parameters=None, tags=None)
Bases:
objectProperties for CfnIdentitySourcePropsMixin.
- Parameters:
identity_source_parameters (
Union[IResolvable,IdentitySourceParametersProperty,Dict[str,Any],None]) – AIdentitySourceParametersobject. Contains details for the resource that provides identities to the identity source. For example, an IAM Identity Center instance.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Tags that you have added to the specified resource.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mpa-identitysource.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_mpa import mixins as mpa_mixins cfn_identity_source_mixin_props = mpa_mixins.CfnIdentitySourceMixinProps( identity_source_parameters=mpa_mixins.CfnIdentitySourcePropsMixin.IdentitySourceParametersProperty( iam_identity_center=mpa_mixins.CfnIdentitySourcePropsMixin.IamIdentityCenterProperty( approval_portal_url="approvalPortalUrl", instance_arn="instanceArn", region="region" ) ), tags=[CfnTag( key="key", value="value" )] )
Attributes
- identity_source_parameters
A
IdentitySourceParametersobject.Contains details for the resource that provides identities to the identity source. For example, an IAM Identity Center instance.
- tags
Tags that you have added to the specified resource.