1. Packages
  2. AWS
  3. API Docs
  4. iot
  5. Certificate
AWS v6.77.0 published on Wednesday, Apr 9, 2025 by Pulumi

aws.iot.Certificate

Explore with Pulumi AI

Creates and manages an AWS IoT certificate.

Example Usage

With CSR

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
import * as std from "@pulumi/std";

const cert = new aws.iot.Certificate("cert", {
    csr: std.file({
        input: "/my/csr.pem",
    }).then(invoke => invoke.result),
    active: true,
});
Copy
import pulumi
import pulumi_aws as aws
import pulumi_std as std

cert = aws.iot.Certificate("cert",
    csr=std.file(input="/my/csr.pem").result,
    active=True)
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/iot"
	"github.com/pulumi/pulumi-std/sdk/go/std"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		invokeFile, err := std.File(ctx, &std.FileArgs{
			Input: "/my/csr.pem",
		}, nil)
		if err != nil {
			return err
		}
		_, err = iot.NewCertificate(ctx, "cert", &iot.CertificateArgs{
			Csr:    pulumi.String(invokeFile.Result),
			Active: pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
using Std = Pulumi.Std;

return await Deployment.RunAsync(() => 
{
    var cert = new Aws.Iot.Certificate("cert", new()
    {
        Csr = Std.File.Invoke(new()
        {
            Input = "/my/csr.pem",
        }).Apply(invoke => invoke.Result),
        Active = true,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.iot.Certificate;
import com.pulumi.aws.iot.CertificateArgs;
import com.pulumi.std.StdFunctions;
import com.pulumi.std.inputs.FileArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var cert = new Certificate("cert", CertificateArgs.builder()
            .csr(StdFunctions.file(FileArgs.builder()
                .input("/my/csr.pem")
                .build()).result())
            .active(true)
            .build());

    }
}
Copy
resources:
  cert:
    type: aws:iot:Certificate
    properties:
      csr:
        fn::invoke:
          function: std:file
          arguments:
            input: /my/csr.pem
          return: result
      active: true
Copy

Without CSR

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const cert = new aws.iot.Certificate("cert", {active: true});
Copy
import pulumi
import pulumi_aws as aws

cert = aws.iot.Certificate("cert", active=True)
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/iot"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := iot.NewCertificate(ctx, "cert", &iot.CertificateArgs{
			Active: pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var cert = new Aws.Iot.Certificate("cert", new()
    {
        Active = true,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.iot.Certificate;
import com.pulumi.aws.iot.CertificateArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var cert = new Certificate("cert", CertificateArgs.builder()
            .active(true)
            .build());

    }
}
Copy
resources:
  cert:
    type: aws:iot:Certificate
    properties:
      active: true
Copy

From existing certificate without a CA

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
import * as std from "@pulumi/std";

const cert = new aws.iot.Certificate("cert", {
    certificatePem: std.file({
        input: "/my/cert.pem",
    }).then(invoke => invoke.result),
    active: true,
});
Copy
import pulumi
import pulumi_aws as aws
import pulumi_std as std

cert = aws.iot.Certificate("cert",
    certificate_pem=std.file(input="/my/cert.pem").result,
    active=True)
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/iot"
	"github.com/pulumi/pulumi-std/sdk/go/std"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		invokeFile, err := std.File(ctx, &std.FileArgs{
			Input: "/my/cert.pem",
		}, nil)
		if err != nil {
			return err
		}
		_, err = iot.NewCertificate(ctx, "cert", &iot.CertificateArgs{
			CertificatePem: pulumi.String(invokeFile.Result),
			Active:         pulumi.Bool(true),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
using Std = Pulumi.Std;

return await Deployment.RunAsync(() => 
{
    var cert = new Aws.Iot.Certificate("cert", new()
    {
        CertificatePem = Std.File.Invoke(new()
        {
            Input = "/my/cert.pem",
        }).Apply(invoke => invoke.Result),
        Active = true,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.iot.Certificate;
import com.pulumi.aws.iot.CertificateArgs;
import com.pulumi.std.StdFunctions;
import com.pulumi.std.inputs.FileArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var cert = new Certificate("cert", CertificateArgs.builder()
            .certificatePem(StdFunctions.file(FileArgs.builder()
                .input("/my/cert.pem")
                .build()).result())
            .active(true)
            .build());

    }
}
Copy
resources:
  cert:
    type: aws:iot:Certificate
    properties:
      certificatePem:
        fn::invoke:
          function: std:file
          arguments:
            input: /my/cert.pem
          return: result
      active: true
Copy

Create Certificate Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Certificate(name: string, args: CertificateArgs, opts?: CustomResourceOptions);
@overload
def Certificate(resource_name: str,
                args: CertificateArgs,
                opts: Optional[ResourceOptions] = None)

@overload
def Certificate(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                active: Optional[bool] = None,
                ca_pem: Optional[str] = None,
                certificate_pem: Optional[str] = None,
                csr: Optional[str] = None)
func NewCertificate(ctx *Context, name string, args CertificateArgs, opts ...ResourceOption) (*Certificate, error)
public Certificate(string name, CertificateArgs args, CustomResourceOptions? opts = null)
public Certificate(String name, CertificateArgs args)
public Certificate(String name, CertificateArgs args, CustomResourceOptions options)
type: aws:iot:Certificate
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. CertificateArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. CertificateArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. CertificateArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. CertificateArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. CertificateArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var examplecertificateResourceResourceFromIotcertificate = new Aws.Iot.Certificate("examplecertificateResourceResourceFromIotcertificate", new()
{
    Active = false,
    CaPem = "string",
    CertificatePem = "string",
    Csr = "string",
});
Copy
example, err := iot.NewCertificate(ctx, "examplecertificateResourceResourceFromIotcertificate", &iot.CertificateArgs{
	Active:         pulumi.Bool(false),
	CaPem:          pulumi.String("string"),
	CertificatePem: pulumi.String("string"),
	Csr:            pulumi.String("string"),
})
Copy
var examplecertificateResourceResourceFromIotcertificate = new Certificate("examplecertificateResourceResourceFromIotcertificate", CertificateArgs.builder()
    .active(false)
    .caPem("string")
    .certificatePem("string")
    .csr("string")
    .build());
Copy
examplecertificate_resource_resource_from_iotcertificate = aws.iot.Certificate("examplecertificateResourceResourceFromIotcertificate",
    active=False,
    ca_pem="string",
    certificate_pem="string",
    csr="string")
Copy
const examplecertificateResourceResourceFromIotcertificate = new aws.iot.Certificate("examplecertificateResourceResourceFromIotcertificate", {
    active: false,
    caPem: "string",
    certificatePem: "string",
    csr: "string",
});
Copy
type: aws:iot:Certificate
properties:
    active: false
    caPem: string
    certificatePem: string
    csr: string
Copy

Certificate Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Certificate resource accepts the following input properties:

Active This property is required. bool
Boolean flag to indicate if the certificate should be active
CaPem Changes to this property will trigger replacement. string
The CA certificate for the certificate to be registered. If this is set, the CA needs to be registered with AWS IoT beforehand.
CertificatePem Changes to this property will trigger replacement. string
The certificate to be registered. If ca_pem is unspecified, review RegisterCertificateWithoutCA. If ca_pem is specified, review RegisterCertificate for more information on registering a certificate.
Csr Changes to this property will trigger replacement. string
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.
Active This property is required. bool
Boolean flag to indicate if the certificate should be active
CaPem Changes to this property will trigger replacement. string
The CA certificate for the certificate to be registered. If this is set, the CA needs to be registered with AWS IoT beforehand.
CertificatePem Changes to this property will trigger replacement. string
The certificate to be registered. If ca_pem is unspecified, review RegisterCertificateWithoutCA. If ca_pem is specified, review RegisterCertificate for more information on registering a certificate.
Csr Changes to this property will trigger replacement. string
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.
active This property is required. Boolean
Boolean flag to indicate if the certificate should be active
caPem Changes to this property will trigger replacement. String
The CA certificate for the certificate to be registered. If this is set, the CA needs to be registered with AWS IoT beforehand.
certificatePem Changes to this property will trigger replacement. String
The certificate to be registered. If ca_pem is unspecified, review RegisterCertificateWithoutCA. If ca_pem is specified, review RegisterCertificate for more information on registering a certificate.
csr Changes to this property will trigger replacement. String
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.
active This property is required. boolean
Boolean flag to indicate if the certificate should be active
caPem Changes to this property will trigger replacement. string
The CA certificate for the certificate to be registered. If this is set, the CA needs to be registered with AWS IoT beforehand.
certificatePem Changes to this property will trigger replacement. string
The certificate to be registered. If ca_pem is unspecified, review RegisterCertificateWithoutCA. If ca_pem is specified, review RegisterCertificate for more information on registering a certificate.
csr Changes to this property will trigger replacement. string
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.
active This property is required. bool
Boolean flag to indicate if the certificate should be active
ca_pem Changes to this property will trigger replacement. str
The CA certificate for the certificate to be registered. If this is set, the CA needs to be registered with AWS IoT beforehand.
certificate_pem Changes to this property will trigger replacement. str
The certificate to be registered. If ca_pem is unspecified, review RegisterCertificateWithoutCA. If ca_pem is specified, review RegisterCertificate for more information on registering a certificate.
csr Changes to this property will trigger replacement. str
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.
active This property is required. Boolean
Boolean flag to indicate if the certificate should be active
caPem Changes to this property will trigger replacement. String
The CA certificate for the certificate to be registered. If this is set, the CA needs to be registered with AWS IoT beforehand.
certificatePem Changes to this property will trigger replacement. String
The certificate to be registered. If ca_pem is unspecified, review RegisterCertificateWithoutCA. If ca_pem is specified, review RegisterCertificate for more information on registering a certificate.
csr Changes to this property will trigger replacement. String
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.

Outputs

All input properties are implicitly available as output properties. Additionally, the Certificate resource produces the following output properties:

Arn string
The ARN of the created certificate.
CaCertificateId string
The certificate ID of the CA certificate used to sign the certificate.
Id string
The provider-assigned unique ID for this managed resource.
PrivateKey string
When neither CSR nor certificate is provided, the private key.
PublicKey string
When neither CSR nor certificate is provided, the public key.
Arn string
The ARN of the created certificate.
CaCertificateId string
The certificate ID of the CA certificate used to sign the certificate.
Id string
The provider-assigned unique ID for this managed resource.
PrivateKey string
When neither CSR nor certificate is provided, the private key.
PublicKey string
When neither CSR nor certificate is provided, the public key.
arn String
The ARN of the created certificate.
caCertificateId String
The certificate ID of the CA certificate used to sign the certificate.
id String
The provider-assigned unique ID for this managed resource.
privateKey String
When neither CSR nor certificate is provided, the private key.
publicKey String
When neither CSR nor certificate is provided, the public key.
arn string
The ARN of the created certificate.
caCertificateId string
The certificate ID of the CA certificate used to sign the certificate.
id string
The provider-assigned unique ID for this managed resource.
privateKey string
When neither CSR nor certificate is provided, the private key.
publicKey string
When neither CSR nor certificate is provided, the public key.
arn str
The ARN of the created certificate.
ca_certificate_id str
The certificate ID of the CA certificate used to sign the certificate.
id str
The provider-assigned unique ID for this managed resource.
private_key str
When neither CSR nor certificate is provided, the private key.
public_key str
When neither CSR nor certificate is provided, the public key.
arn String
The ARN of the created certificate.
caCertificateId String
The certificate ID of the CA certificate used to sign the certificate.
id String
The provider-assigned unique ID for this managed resource.
privateKey String
When neither CSR nor certificate is provided, the private key.
publicKey String
When neither CSR nor certificate is provided, the public key.

Look up Existing Certificate Resource

Get an existing Certificate resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: CertificateState, opts?: CustomResourceOptions): Certificate
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        active: Optional[bool] = None,
        arn: Optional[str] = None,
        ca_certificate_id: Optional[str] = None,
        ca_pem: Optional[str] = None,
        certificate_pem: Optional[str] = None,
        csr: Optional[str] = None,
        private_key: Optional[str] = None,
        public_key: Optional[str] = None) -> Certificate
func GetCertificate(ctx *Context, name string, id IDInput, state *CertificateState, opts ...ResourceOption) (*Certificate, error)
public static Certificate Get(string name, Input<string> id, CertificateState? state, CustomResourceOptions? opts = null)
public static Certificate get(String name, Output<String> id, CertificateState state, CustomResourceOptions options)
resources:  _:    type: aws:iot:Certificate    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Active bool
Boolean flag to indicate if the certificate should be active
Arn string
The ARN of the created certificate.
CaCertificateId string
The certificate ID of the CA certificate used to sign the certificate.
CaPem Changes to this property will trigger replacement. string
The CA certificate for the certificate to be registered. If this is set, the CA needs to be registered with AWS IoT beforehand.
CertificatePem Changes to this property will trigger replacement. string
The certificate to be registered. If ca_pem is unspecified, review RegisterCertificateWithoutCA. If ca_pem is specified, review RegisterCertificate for more information on registering a certificate.
Csr Changes to this property will trigger replacement. string
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.
PrivateKey string
When neither CSR nor certificate is provided, the private key.
PublicKey string
When neither CSR nor certificate is provided, the public key.
Active bool
Boolean flag to indicate if the certificate should be active
Arn string
The ARN of the created certificate.
CaCertificateId string
The certificate ID of the CA certificate used to sign the certificate.
CaPem Changes to this property will trigger replacement. string
The CA certificate for the certificate to be registered. If this is set, the CA needs to be registered with AWS IoT beforehand.
CertificatePem Changes to this property will trigger replacement. string
The certificate to be registered. If ca_pem is unspecified, review RegisterCertificateWithoutCA. If ca_pem is specified, review RegisterCertificate for more information on registering a certificate.
Csr Changes to this property will trigger replacement. string
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.
PrivateKey string
When neither CSR nor certificate is provided, the private key.
PublicKey string
When neither CSR nor certificate is provided, the public key.
active Boolean
Boolean flag to indicate if the certificate should be active
arn String
The ARN of the created certificate.
caCertificateId String
The certificate ID of the CA certificate used to sign the certificate.
caPem Changes to this property will trigger replacement. String
The CA certificate for the certificate to be registered. If this is set, the CA needs to be registered with AWS IoT beforehand.
certificatePem Changes to this property will trigger replacement. String
The certificate to be registered. If ca_pem is unspecified, review RegisterCertificateWithoutCA. If ca_pem is specified, review RegisterCertificate for more information on registering a certificate.
csr Changes to this property will trigger replacement. String
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.
privateKey String
When neither CSR nor certificate is provided, the private key.
publicKey String
When neither CSR nor certificate is provided, the public key.
active boolean
Boolean flag to indicate if the certificate should be active
arn string
The ARN of the created certificate.
caCertificateId string
The certificate ID of the CA certificate used to sign the certificate.
caPem Changes to this property will trigger replacement. string
The CA certificate for the certificate to be registered. If this is set, the CA needs to be registered with AWS IoT beforehand.
certificatePem Changes to this property will trigger replacement. string
The certificate to be registered. If ca_pem is unspecified, review RegisterCertificateWithoutCA. If ca_pem is specified, review RegisterCertificate for more information on registering a certificate.
csr Changes to this property will trigger replacement. string
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.
privateKey string
When neither CSR nor certificate is provided, the private key.
publicKey string
When neither CSR nor certificate is provided, the public key.
active bool
Boolean flag to indicate if the certificate should be active
arn str
The ARN of the created certificate.
ca_certificate_id str
The certificate ID of the CA certificate used to sign the certificate.
ca_pem Changes to this property will trigger replacement. str
The CA certificate for the certificate to be registered. If this is set, the CA needs to be registered with AWS IoT beforehand.
certificate_pem Changes to this property will trigger replacement. str
The certificate to be registered. If ca_pem is unspecified, review RegisterCertificateWithoutCA. If ca_pem is specified, review RegisterCertificate for more information on registering a certificate.
csr Changes to this property will trigger replacement. str
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.
private_key str
When neither CSR nor certificate is provided, the private key.
public_key str
When neither CSR nor certificate is provided, the public key.
active Boolean
Boolean flag to indicate if the certificate should be active
arn String
The ARN of the created certificate.
caCertificateId String
The certificate ID of the CA certificate used to sign the certificate.
caPem Changes to this property will trigger replacement. String
The CA certificate for the certificate to be registered. If this is set, the CA needs to be registered with AWS IoT beforehand.
certificatePem Changes to this property will trigger replacement. String
The certificate to be registered. If ca_pem is unspecified, review RegisterCertificateWithoutCA. If ca_pem is specified, review RegisterCertificate for more information on registering a certificate.
csr Changes to this property will trigger replacement. String
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.
privateKey String
When neither CSR nor certificate is provided, the private key.
publicKey String
When neither CSR nor certificate is provided, the public key.

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.