CfnApplicationMixinProps
- class aws_cdk.mixins_preview.aws_sso.mixins.CfnApplicationMixinProps(*, application_provider_arn=None, description=None, instance_arn=None, name=None, portal_options=None, status=None, tags=None)
Bases:
objectProperties for CfnApplicationPropsMixin.
- Parameters:
application_provider_arn (
Optional[str]) – The ARN of the application provider for this application.description (
Optional[str]) – The description of the application.instance_arn (
Optional[str]) – The ARN of the instance of IAM Identity Center that is configured with this application.name (
Optional[str]) – The name of the application.portal_options (
Union[IResolvable,PortalOptionsConfigurationProperty,Dict[str,Any],None]) – A structure that describes the options for the access portal associated with this application.status (
Optional[str]) – The current status of the application in this instance of IAM Identity Center.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – Specifies tags to be attached to the application.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-application.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_sso import mixins as sso_mixins cfn_application_mixin_props = sso_mixins.CfnApplicationMixinProps( application_provider_arn="applicationProviderArn", description="description", instance_arn="instanceArn", name="name", portal_options=sso_mixins.CfnApplicationPropsMixin.PortalOptionsConfigurationProperty( sign_in_options=sso_mixins.CfnApplicationPropsMixin.SignInOptionsProperty( application_url="applicationUrl", origin="origin" ), visibility="visibility" ), status="status", tags=[CfnTag( key="key", value="value" )] )
Attributes
- application_provider_arn
The ARN of the application provider for this application.
- description
The description of the application.
- instance_arn
The ARN of the instance of IAM Identity Center that is configured with this application.
- name
The name of the application.
- portal_options
A structure that describes the options for the access portal associated with this application.
- status
The current status of the application in this instance of IAM Identity Center.
- tags
Specifies tags to be attached to the application.