Show / Hide Table of Contents

Class CfnTrustAnchorProps

Properties for defining a CfnTrustAnchor.

Inheritance
System.Object
CfnTrustAnchorProps
Implements
ICfnTrustAnchorProps
Namespace: Amazon.CDK.AWS.RolesAnywhere
Assembly: Amazon.CDK.AWS.RolesAnywhere.dll
Syntax (csharp)
public class CfnTrustAnchorProps : Object, ICfnTrustAnchorProps
Syntax (vb)
Public Class CfnTrustAnchorProps
    Inherits Object
    Implements ICfnTrustAnchorProps
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-trustanchor.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.AWS.RolesAnywhere;

var cfnTrustAnchorProps = new CfnTrustAnchorProps {
    Name = "name",
    Source = new SourceProperty {
        SourceData = new SourceDataProperty {
            AcmPcaArn = "acmPcaArn",
            X509CertificateData = "x509CertificateData"
        },
        SourceType = "sourceType"
    },

    // the properties below are optional
    Enabled = false,
    Tags = new [] { new CfnTag {
        Key = "key",
        Value = "value"
    } }
};

Synopsis

Constructors

CfnTrustAnchorProps()

Properties

Enabled

Indicates whether the trust anchor is enabled.

Name

The name of the trust anchor.

Source

The trust anchor type and its related certificate data.

Tags

The tags to attach to the trust anchor.

Constructors

CfnTrustAnchorProps()

public CfnTrustAnchorProps()

Properties

Enabled

Indicates whether the trust anchor is enabled.

public object Enabled { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-trustanchor.html#cfn-rolesanywhere-trustanchor-enabled

Name

The name of the trust anchor.

public string Name { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-trustanchor.html#cfn-rolesanywhere-trustanchor-name

Source

The trust anchor type and its related certificate data.

public object Source { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-trustanchor.html#cfn-rolesanywhere-trustanchor-source

Tags

The tags to attach to the trust anchor.

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

ICfnTag[]

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-trustanchor.html#cfn-rolesanywhere-trustanchor-tags

Implements

ICfnTrustAnchorProps
Back to top Generated by DocFX