Show / Hide Table of Contents

Class CertificateState

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

Constructors

View Source

CertificateState()

Declaration
public CertificateState()

Properties

View Source

Active

Boolean flag to indicate if the certificate should be active

Declaration
public Input<bool> Active { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Arn

The ARN of the created certificate.

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

CertificatePem

The certificate data, in PEM format.

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

Csr

The certificate signing request. Review CreateCertificateFromCsr for more information on generating a certificate from a certificate signing request (CSR). If none is specified both the certificate and keys will be generated, review CreateKeysAndCertificate for more information on generating keys and a certificate.

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

PrivateKey

When no CSR is provided, the private key.

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

PublicKey

When no CSR is provided, the public key.

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