Show / Hide Table of Contents

Class AliasState

Inheritance
System.Object
InputArgs
ResourceArgs
AliasState
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Kms
Assembly: Pulumi.Aws.dll
Syntax
public sealed class AliasState : ResourceArgs

Constructors

View Source

AliasState()

Declaration
public AliasState()

Properties

View Source

Arn

The Amazon Resource Name (ARN) of the key alias.

Declaration
public Input<string> Arn { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Name

The display name of the alias. The name must start with the word "alias" followed by a forward slash (alias/)

Declaration
public Input<string> Name { get; set; }
Property Value
Type Description
Input<System.String>
View Source

NamePrefix

Creates an unique alias beginning with the specified prefix. The name must start with the word "alias" followed by a forward slash (alias/). Conflicts with name.

Declaration
public Input<string> NamePrefix { get; set; }
Property Value
Type Description
Input<System.String>
View Source

TargetKeyArn

The Amazon Resource Name (ARN) of the target key identifier.

Declaration
public Input<string> TargetKeyArn { get; set; }
Property Value
Type Description
Input<System.String>
View Source

TargetKeyId

Identifier for the key for which the alias is for, can be either an ARN or key_id.

Declaration
public Input<string> TargetKeyId { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.