UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

112 lines (111 loc) 7.26 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Resource Type definition for AWS::IAM::ServerCertificate */ export declare class ServerCertificate extends pulumi.CustomResource { /** * Get an existing ServerCertificate resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): ServerCertificate; /** * Returns true if the given object is an instance of ServerCertificate. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ServerCertificate; /** * Amazon Resource Name (ARN) of the server certificate */ readonly arn: pulumi.Output<string>; /** * The contents of the public key certificate. */ readonly certificateBody: pulumi.Output<string | undefined>; /** * The contents of the public key certificate chain. */ readonly certificateChain: pulumi.Output<string | undefined>; /** * The path for the server certificate. For more information about paths, see [IAM identifiers](https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html) in the *IAM User Guide* . * * This parameter is optional. If it is not included, it defaults to a slash (/). This parameter allows (through its [regex pattern](https://docs.aws.amazon.com/http://wikipedia.org/wiki/regex) ) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes. In addition, it can contain any ASCII character from the ! ( `\u0021` ) through the DEL character ( `\u007F` ), including most punctuation characters, digits, and upper and lowercased letters. * * > If you are uploading a server certificate specifically for use with Amazon CloudFront distributions, you must specify a path using the `path` parameter. The path must begin with `/cloudfront` and must include a trailing slash (for example, `/cloudfront/test/` ). */ readonly path: pulumi.Output<string | undefined>; /** * The contents of the private key in PEM-encoded format. * * The [regex pattern](https://docs.aws.amazon.com/http://wikipedia.org/wiki/regex) used to validate this parameter is a string of characters consisting of the following: * * - Any printable ASCII character ranging from the space character ( `\u0020` ) through the end of the ASCII character range * - The printable characters in the Basic Latin and Latin-1 Supplement character set (through `\u00FF` ) * - The special characters tab ( `\u0009` ), line feed ( `\u000A` ), and carriage return ( `\u000D` ) */ readonly privateKey: pulumi.Output<string | undefined>; /** * The name for the server certificate. Do not include the path in this value. The name of the certificate cannot contain any spaces. * * This parameter allows (through its [regex pattern](https://docs.aws.amazon.com/http://wikipedia.org/wiki/regex) ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@- */ readonly serverCertificateName: pulumi.Output<string | undefined>; /** * A list of tags that are attached to the server certificate. For more information about tagging, see [Tagging IAM resources](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html) in the *IAM User Guide* . */ readonly tags: pulumi.Output<outputs.Tag[] | undefined>; /** * Create a ServerCertificate resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: ServerCertificateArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a ServerCertificate resource. */ export interface ServerCertificateArgs { /** * The contents of the public key certificate. */ certificateBody?: pulumi.Input<string>; /** * The contents of the public key certificate chain. */ certificateChain?: pulumi.Input<string>; /** * The path for the server certificate. For more information about paths, see [IAM identifiers](https://docs.aws.amazon.com/IAM/latest/UserGuide/Using_Identifiers.html) in the *IAM User Guide* . * * This parameter is optional. If it is not included, it defaults to a slash (/). This parameter allows (through its [regex pattern](https://docs.aws.amazon.com/http://wikipedia.org/wiki/regex) ) a string of characters consisting of either a forward slash (/) by itself or a string that must begin and end with forward slashes. In addition, it can contain any ASCII character from the ! ( `\u0021` ) through the DEL character ( `\u007F` ), including most punctuation characters, digits, and upper and lowercased letters. * * > If you are uploading a server certificate specifically for use with Amazon CloudFront distributions, you must specify a path using the `path` parameter. The path must begin with `/cloudfront` and must include a trailing slash (for example, `/cloudfront/test/` ). */ path?: pulumi.Input<string>; /** * The contents of the private key in PEM-encoded format. * * The [regex pattern](https://docs.aws.amazon.com/http://wikipedia.org/wiki/regex) used to validate this parameter is a string of characters consisting of the following: * * - Any printable ASCII character ranging from the space character ( `\u0020` ) through the end of the ASCII character range * - The printable characters in the Basic Latin and Latin-1 Supplement character set (through `\u00FF` ) * - The special characters tab ( `\u0009` ), line feed ( `\u000A` ), and carriage return ( `\u000D` ) */ privateKey?: pulumi.Input<string>; /** * The name for the server certificate. Do not include the path in this value. The name of the certificate cannot contain any spaces. * * This parameter allows (through its [regex pattern](https://docs.aws.amazon.com/http://wikipedia.org/wiki/regex) ) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@- */ serverCertificateName?: pulumi.Input<string>; /** * A list of tags that are attached to the server certificate. For more information about tagging, see [Tagging IAM resources](https://docs.aws.amazon.com/IAM/latest/UserGuide/id_tags.html) in the *IAM User Guide* . */ tags?: pulumi.Input<pulumi.Input<inputs.TagArgs>[]>; }