Show / Hide Table of Contents

Class KeyPairState

Inheritance
System.Object
InputArgs
ResourceArgs
KeyPairState
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.LightSail
Assembly: Pulumi.Aws.dll
Syntax
public sealed class KeyPairState : ResourceArgs

Constructors

View Source

KeyPairState()

Declaration
public KeyPairState()

Properties

View Source

Arn

The ARN of the Lightsail key pair

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

EncryptedFingerprint

The MD5 public key fingerprint for the encrypted private key

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

EncryptedPrivateKey

the private key material, base 64 encoded and encrypted with the given pgp_key. This is only populated when creating a new key and pgp_key is supplied

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

Fingerprint

The MD5 public key fingerprint as specified in section 4 of RFC 4716.

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

Name

The name of the Lightsail Key Pair. If omitted, a unique name will be generated by this provider

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

NamePrefix

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

PgpKey

An optional PGP key to encrypt the resulting private key material. Only used when creating a new key pair

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

PrivateKey

the private key, base64 encoded. This is only populated when creating a new key, and when no pgp_key is provided

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

PublicKey

The public key material. This public key will be imported into Lightsail

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