Show / Hide Table of Contents

Class GetCertificateArgs

Inheritance
System.Object
InputArgs
InvokeArgs
GetCertificateArgs
Inherited Members
InvokeArgs.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.Acm
Assembly: Pulumi.Aws.dll
Syntax
public sealed class GetCertificateArgs : InvokeArgs

Constructors

View Source

GetCertificateArgs()

Declaration
public GetCertificateArgs()

Properties

View Source

Domain

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
View Source

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>
View Source

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>
View Source

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>
View Source

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>
View Source

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>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.