class CfnApplicationPropsMixin
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSO.Mixins.CfnApplicationPropsMixin |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssso/mixins#CfnApplicationPropsMixin |
Java | software.amazon.awscdk.mixins.preview.services.sso.mixins.CfnApplicationPropsMixin |
Python | aws_cdk.mixins_preview.aws_sso.mixins.CfnApplicationPropsMixin |
TypeScript | @aws-cdk/mixins-preview » aws_sso » mixins » CfnApplicationPropsMixin |
Implements
IMixin
Extends
Mixin
Creates an OAuth 2.0 customer managed application in IAM Identity Center for the given application provider.
This API does not support creating SAML 2.0 customer managed applications or AWS managed applications. To learn how to create an AWS managed application, see the application user guide. You can create a SAML 2.0 customer managed application in the AWS Management Console only. See Setting up customer managed SAML 2.0 applications . For more information on these application types, see AWS managed applications .
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-application.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins } from '@aws-cdk/mixins-preview';
import { mixins as sso_mixins } from '@aws-cdk/mixins-preview/aws-sso';
const cfnApplicationPropsMixin = new sso_mixins.CfnApplicationPropsMixin({
applicationProviderArn: 'applicationProviderArn',
description: 'description',
instanceArn: 'instanceArn',
name: 'name',
portalOptions: {
signInOptions: {
applicationUrl: 'applicationUrl',
origin: 'origin',
},
visibility: 'visibility',
},
status: 'status',
tags: [{
key: 'key',
value: 'value',
}],
}, /* all optional props */ {
strategy: mixins.PropertyMergeStrategy.OVERRIDE,
});
Initializer
new CfnApplicationPropsMixin(props: CfnApplicationMixinProps, options?: CfnPropertyMixinOptions)
Parameters
- props
Cfn— L1 properties to apply.Application Mixin Props - options
Cfn— Mixin options.Property Mixin Options
Create a mixin to apply properties to AWS::SSO::Application.
Properties
| Name | Type | Description |
|---|---|---|
| props | Cfn | |
| strategy | Property | |
| static CFN_PROPERTY_KEYS | string[] |
props
Type:
Cfn
strategy
Type:
Property
static CFN_PROPERTY_KEYS
Type:
string[]
Methods
| Name | Description |
|---|---|
| apply | Apply the mixin properties to the construct. |
| supports(construct) | Check if this mixin supports the given construct. |
applyTo(construct)
public applyTo(construct: IConstruct): IConstruct
Parameters
- construct
IConstruct
Returns
Apply the mixin properties to the construct.
supports(construct)
public supports(construct: IConstruct): boolean
Parameters
- construct
IConstruct
Returns
boolean
Check if this mixin supports the given construct.

.NET
Go
Java
Python
TypeScript