Show / Hide Table of Contents

Class CfnApplicationMixinProps

Properties for CfnApplicationPropsMixin.

Inheritance
object
CfnApplicationMixinProps
Implements
ICfnApplicationMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.SSO.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnApplicationMixinProps : ICfnApplicationMixinProps
Syntax (vb)
Public Class CfnApplicationMixinProps Implements ICfnApplicationMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-application.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.SSO.Mixins;

             var cfnApplicationMixinProps = new CfnApplicationMixinProps {
                 ApplicationProviderArn = "applicationProviderArn",
                 Description = "description",
                 InstanceArn = "instanceArn",
                 Name = "name",
                 PortalOptions = new PortalOptionsConfigurationProperty {
                     SignInOptions = new SignInOptionsProperty {
                         ApplicationUrl = "applicationUrl",
                         Origin = "origin"
                     },
                     Visibility = "visibility"
                 },
                 Status = "status",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnApplicationMixinProps()

Properties for CfnApplicationPropsMixin.

Properties

ApplicationProviderArn

The ARN of the application provider for this application.

Description

The description of the application.

InstanceArn

The ARN of the instance of IAM Identity Center that is configured with this application.

Name

The name of the application.

PortalOptions

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.

Constructors

CfnApplicationMixinProps()

Properties for CfnApplicationPropsMixin.

public CfnApplicationMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-application.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.Mixins.Preview.AWS.SSO.Mixins;

             var cfnApplicationMixinProps = new CfnApplicationMixinProps {
                 ApplicationProviderArn = "applicationProviderArn",
                 Description = "description",
                 InstanceArn = "instanceArn",
                 Name = "name",
                 PortalOptions = new PortalOptionsConfigurationProperty {
                     SignInOptions = new SignInOptionsProperty {
                         ApplicationUrl = "applicationUrl",
                         Origin = "origin"
                     },
                     Visibility = "visibility"
                 },
                 Status = "status",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

ApplicationProviderArn

The ARN of the application provider for this application.

public string? ApplicationProviderArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-application.html#cfn-sso-application-applicationproviderarn

Description

The description of the application.

public string? Description { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-application.html#cfn-sso-application-description

InstanceArn

The ARN of the instance of IAM Identity Center that is configured with this application.

public string? InstanceArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-application.html#cfn-sso-application-instancearn

Name

The name of the application.

public string? Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-application.html#cfn-sso-application-name

PortalOptions

A structure that describes the options for the access portal associated with this application.

public object? PortalOptions { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-application.html#cfn-sso-application-portaloptions

Type union: either IResolvable or CfnApplicationPropsMixin.IPortalOptionsConfigurationProperty

Status

The current status of the application in this instance of IAM Identity Center.

public string? Status { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-application.html#cfn-sso-application-status

Tags

Specifies tags to be attached to the application.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sso-application.html#cfn-sso-application-tags

Implements

ICfnApplicationMixinProps
Back to top Generated by DocFX