Show / Hide Table of Contents

Class SshKeyArgs

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

Constructors

View Source

SshKeyArgs()

Declaration
public SshKeyArgs()

Properties

View Source

Encoding

Specifies the public key encoding format to use in the response. To retrieve the public key in ssh-rsa format, use SSH. To retrieve the public key in PEM format, use PEM.

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

PublicKey

The SSH public key. The public key must be encoded in ssh-rsa format or PEM format.

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

Status

The status to assign to the SSH public key. Active means the key can be used for authentication with an AWS CodeCommit repository. Inactive means the key cannot be used. Default is active.

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

Username

The name of the IAM user to associate the SSH public key with.

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