CfnApplicationProps
- class aws_cdk.aws_sso.CfnApplicationProps(*, application_provider_arn, instance_arn, name, description=None, portal_options=None, status=None, tags=None)
Bases:
objectProperties for defining a
CfnApplication.- Parameters:
application_provider_arn (
str) – The ARN of the application provider for this application.instance_arn (
str) – The ARN of the instance of IAM Identity Center that is configured with this application.name (
str) – The name of the application.description (
Optional[str]) – The description 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:
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_sso as sso cfn_application_props = sso.CfnApplicationProps( application_provider_arn="applicationProviderArn", instance_arn="instanceArn", name="name", # the properties below are optional description="description", portal_options=sso.CfnApplication.PortalOptionsConfigurationProperty( sign_in_options=sso.CfnApplication.SignInOptionsProperty( origin="origin", # the properties below are optional application_url="applicationUrl" ), 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.