Show / Hide Table of Contents

Class CfnKeySigningKeyMixinProps

Properties for CfnKeySigningKeyPropsMixin.

Inheritance
object
CfnKeySigningKeyMixinProps
Implements
ICfnKeySigningKeyMixinProps
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.Route53.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnKeySigningKeyMixinProps : ICfnKeySigningKeyMixinProps
Syntax (vb)
Public Class CfnKeySigningKeyMixinProps Implements ICfnKeySigningKeyMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-keysigningkey.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.Route53.Mixins;

             var cfnKeySigningKeyMixinProps = new CfnKeySigningKeyMixinProps {
                 HostedZoneId = "hostedZoneId",
                 KeyManagementServiceArn = "keyManagementServiceArn",
                 Name = "name",
                 Status = "status"
             };

Synopsis

Constructors

CfnKeySigningKeyMixinProps()

Properties for CfnKeySigningKeyPropsMixin.

Properties

HostedZoneId

The unique string (ID) that is used to identify a hosted zone.

KeyManagementServiceArn

The Amazon resource name (ARN) for a customer managed customer master key (CMK) in AWS Key Management Service ( AWS ).

Name

A string used to identify a key-signing key (KSK).

Status

A string that represents the current key-signing key (KSK) status.

Constructors

CfnKeySigningKeyMixinProps()

Properties for CfnKeySigningKeyPropsMixin.

public CfnKeySigningKeyMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-keysigningkey.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.Route53.Mixins;

             var cfnKeySigningKeyMixinProps = new CfnKeySigningKeyMixinProps {
                 HostedZoneId = "hostedZoneId",
                 KeyManagementServiceArn = "keyManagementServiceArn",
                 Name = "name",
                 Status = "status"
             };

Properties

HostedZoneId

The unique string (ID) that is used to identify a hosted zone.

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

string

Remarks

For example: Z00001111A1ABCaaABC11 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-keysigningkey.html#cfn-route53-keysigningkey-hostedzoneid

KeyManagementServiceArn

The Amazon resource name (ARN) for a customer managed customer master key (CMK) in AWS Key Management Service ( AWS ).

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

string

Remarks

The KeyManagementServiceArn must be unique for each key-signing key (KSK) in a single hosted zone. For example: arn:aws:kms:us-east-1:111122223333:key/111a2222-a11b-1ab1-2ab2-1ab21a2b3a111 .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-keysigningkey.html#cfn-route53-keysigningkey-keymanagementservicearn

Name

A string used to identify a key-signing key (KSK).

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

string

Remarks

Name can include numbers, letters, and underscores (_). Name must be unique for each key-signing key in the same hosted zone.

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

Status

A string that represents the current key-signing key (KSK) status.

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

string

Remarks

Status can have one of the following values:

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

    Implements

    ICfnKeySigningKeyMixinProps
    Back to top Generated by DocFX