Show / Hide Table of Contents

Class ServerCertificateArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ServerCertificateArgs
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 ServerCertificateArgs : ResourceArgs

Constructors

View Source

ServerCertificateArgs()

Declaration
public ServerCertificateArgs()

Properties

View Source

Arn

The Amazon Resource Name (ARN) specifying the server certificate.

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

CertificateBody

The contents of the public key certificate in PEM-encoded format.

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

CertificateChain

The contents of the certificate chain. This is typically a concatenation of the PEM-encoded public key certificates of the chain.

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

Name

The name of the Server Certificate. Do not include the path in this value. If omitted, this provider will assign a random, unique name.

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

NamePrefix

Creates a unique name beginning with the specified prefix. Conflicts with name.

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

Path

The IAM path for the server certificate. If it is not included, it defaults to a slash (/). If this certificate is for use with AWS CloudFront, the path must be in format /cloudfront/your_path_here. See IAM Identifiers for more details on IAM Paths.

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

PrivateKey

The contents of the private key in PEM-encoded format.

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