Class GetCertificateArgs
Inherited Members
Namespace: Pulumi.Aws.Acm
Assembly: Pulumi.Aws.dll
Syntax
public sealed class GetCertificateArgs : InvokeArgs
Constructors
View SourceGetCertificateArgs()
Declaration
public GetCertificateArgs()
Properties
View SourceDomain
The domain of the certificate to look up. If no certificate is found with this name, an error will be returned.
Declaration
public string Domain { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
KeyTypes
A list of key algorithms to filter certificates. By default, ACM does not return all certificate types when searching. Valid values are RSA_1024, RSA_2048, RSA_4096, EC_prime256v1, EC_secp384r1, and EC_secp521r1.
Declaration
public List<string> KeyTypes { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.List<System.String> |
MostRecent
If set to true, it sorts the certificates matched by previous criteria by the NotBefore field, returning only the most recent one. If set to false, it returns an error if more than one certificate is found. Defaults to false.
Declaration
public bool? MostRecent { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Boolean> |
Statuses
A list of statuses on which to filter the returned list. Valid values are PENDING_VALIDATION, ISSUED,
INACTIVE, EXPIRED, VALIDATION_TIMED_OUT, REVOKED and FAILED. If no value is specified, only certificates in the ISSUED state
are returned.
Declaration
public List<string> Statuses { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.List<System.String> |
Tags
A mapping of tags for the resource.
Declaration
public Dictionary<string, object> Tags { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.Dictionary<System.String, System.Object> |
Types
A list of types on which to filter the returned list. Valid values are AMAZON_ISSUED and IMPORTED.
Declaration
public List<string> Types { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.List<System.String> |