Class CertificateState
Inherited Members
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 SourceCertificateState()
Declaration
public CertificateState()
Properties
View SourceActive
Boolean flag to indicate if the certificate should be active
Declaration
public Input<bool> Active { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
Arn
The ARN of the created certificate.
Declaration
public Input<string> Arn { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
CertificatePem
The certificate data, in PEM format.
Declaration
public Input<string> CertificatePem { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
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> |
PrivateKey
When no CSR is provided, the private key.
Declaration
public Input<string> PrivateKey { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
PublicKey
When no CSR is provided, the public key.
Declaration
public Input<string> PublicKey { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |