aws.kinesis.VideoStream
Explore with Pulumi AI
Provides a Kinesis Video Stream resource. Amazon Kinesis Video Streams makes it easy to securely stream video from connected devices to AWS for analytics, machine learning (ML), playback, and other processing.
For more details, see the Amazon Kinesis Documentation.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const _default = new aws.kinesis.VideoStream("default", {
name: "kinesis-video-stream",
dataRetentionInHours: 1,
deviceName: "kinesis-video-device-name",
mediaType: "video/h264",
tags: {
Name: "kinesis-video-stream",
},
});
import pulumi
import pulumi_aws as aws
default = aws.kinesis.VideoStream("default",
name="kinesis-video-stream",
data_retention_in_hours=1,
device_name="kinesis-video-device-name",
media_type="video/h264",
tags={
"Name": "kinesis-video-stream",
})
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/kinesis"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := kinesis.NewVideoStream(ctx, "default", &kinesis.VideoStreamArgs{
Name: pulumi.String("kinesis-video-stream"),
DataRetentionInHours: pulumi.Int(1),
DeviceName: pulumi.String("kinesis-video-device-name"),
MediaType: pulumi.String("video/h264"),
Tags: pulumi.StringMap{
"Name": pulumi.String("kinesis-video-stream"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var @default = new Aws.Kinesis.VideoStream("default", new()
{
Name = "kinesis-video-stream",
DataRetentionInHours = 1,
DeviceName = "kinesis-video-device-name",
MediaType = "video/h264",
Tags =
{
{ "Name", "kinesis-video-stream" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.kinesis.VideoStream;
import com.pulumi.aws.kinesis.VideoStreamArgs;
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 default_ = new VideoStream("default", VideoStreamArgs.builder()
.name("kinesis-video-stream")
.dataRetentionInHours(1)
.deviceName("kinesis-video-device-name")
.mediaType("video/h264")
.tags(Map.of("Name", "kinesis-video-stream"))
.build());
}
}
resources:
default:
type: aws:kinesis:VideoStream
properties:
name: kinesis-video-stream
dataRetentionInHours: 1
deviceName: kinesis-video-device-name
mediaType: video/h264
tags:
Name: kinesis-video-stream
Create VideoStream Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VideoStream(name: string, args?: VideoStreamArgs, opts?: CustomResourceOptions);
@overload
def VideoStream(resource_name: str,
args: Optional[VideoStreamArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def VideoStream(resource_name: str,
opts: Optional[ResourceOptions] = None,
data_retention_in_hours: Optional[int] = None,
device_name: Optional[str] = None,
kms_key_id: Optional[str] = None,
media_type: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewVideoStream(ctx *Context, name string, args *VideoStreamArgs, opts ...ResourceOption) (*VideoStream, error)
public VideoStream(string name, VideoStreamArgs? args = null, CustomResourceOptions? opts = null)
public VideoStream(String name, VideoStreamArgs args)
public VideoStream(String name, VideoStreamArgs args, CustomResourceOptions options)
type: aws:kinesis:VideoStream
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args VideoStreamArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args VideoStreamArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args VideoStreamArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VideoStreamArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VideoStreamArgs
- 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 videoStreamResource = new Aws.Kinesis.VideoStream("videoStreamResource", new()
{
DataRetentionInHours = 0,
DeviceName = "string",
KmsKeyId = "string",
MediaType = "string",
Name = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := kinesis.NewVideoStream(ctx, "videoStreamResource", &kinesis.VideoStreamArgs{
DataRetentionInHours: pulumi.Int(0),
DeviceName: pulumi.String("string"),
KmsKeyId: pulumi.String("string"),
MediaType: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var videoStreamResource = new VideoStream("videoStreamResource", VideoStreamArgs.builder()
.dataRetentionInHours(0)
.deviceName("string")
.kmsKeyId("string")
.mediaType("string")
.name("string")
.tags(Map.of("string", "string"))
.build());
video_stream_resource = aws.kinesis.VideoStream("videoStreamResource",
data_retention_in_hours=0,
device_name="string",
kms_key_id="string",
media_type="string",
name="string",
tags={
"string": "string",
})
const videoStreamResource = new aws.kinesis.VideoStream("videoStreamResource", {
dataRetentionInHours: 0,
deviceName: "string",
kmsKeyId: "string",
mediaType: "string",
name: "string",
tags: {
string: "string",
},
});
type: aws:kinesis:VideoStream
properties:
dataRetentionInHours: 0
deviceName: string
kmsKeyId: string
mediaType: string
name: string
tags:
string: string
VideoStream Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The VideoStream resource accepts the following input properties:
- Data
Retention intIn Hours - The number of hours that you want to retain the data in the stream. Kinesis Video Streams retains the data in a data store that is associated with the stream. The default value is
0
, indicating that the stream does not persist data. - Device
Name string - The name of the device that is writing to the stream. In the current implementation, Kinesis Video Streams does not use this name.
- Kms
Key stringId - The ID of the AWS Key Management Service (AWS KMS) key that you want Kinesis Video Streams to use to encrypt stream data. If no key ID is specified, the default, Kinesis Video-managed key (
aws/kinesisvideo
) is used. - Media
Type string - The media type of the stream. Consumers of the stream can use this information when processing the stream. For more information about media types, see Media Types. If you choose to specify the MediaType, see Naming Requirements for guidelines.
- Name string
- A name to identify the stream. This is unique to the AWS account and region the Stream is created in.
- Dictionary<string, string>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- Data
Retention intIn Hours - The number of hours that you want to retain the data in the stream. Kinesis Video Streams retains the data in a data store that is associated with the stream. The default value is
0
, indicating that the stream does not persist data. - Device
Name string - The name of the device that is writing to the stream. In the current implementation, Kinesis Video Streams does not use this name.
- Kms
Key stringId - The ID of the AWS Key Management Service (AWS KMS) key that you want Kinesis Video Streams to use to encrypt stream data. If no key ID is specified, the default, Kinesis Video-managed key (
aws/kinesisvideo
) is used. - Media
Type string - The media type of the stream. Consumers of the stream can use this information when processing the stream. For more information about media types, see Media Types. If you choose to specify the MediaType, see Naming Requirements for guidelines.
- Name string
- A name to identify the stream. This is unique to the AWS account and region the Stream is created in.
- map[string]string
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- data
Retention IntegerIn Hours - The number of hours that you want to retain the data in the stream. Kinesis Video Streams retains the data in a data store that is associated with the stream. The default value is
0
, indicating that the stream does not persist data. - device
Name String - The name of the device that is writing to the stream. In the current implementation, Kinesis Video Streams does not use this name.
- kms
Key StringId - The ID of the AWS Key Management Service (AWS KMS) key that you want Kinesis Video Streams to use to encrypt stream data. If no key ID is specified, the default, Kinesis Video-managed key (
aws/kinesisvideo
) is used. - media
Type String - The media type of the stream. Consumers of the stream can use this information when processing the stream. For more information about media types, see Media Types. If you choose to specify the MediaType, see Naming Requirements for guidelines.
- name String
- A name to identify the stream. This is unique to the AWS account and region the Stream is created in.
- Map<String,String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- data
Retention numberIn Hours - The number of hours that you want to retain the data in the stream. Kinesis Video Streams retains the data in a data store that is associated with the stream. The default value is
0
, indicating that the stream does not persist data. - device
Name string - The name of the device that is writing to the stream. In the current implementation, Kinesis Video Streams does not use this name.
- kms
Key stringId - The ID of the AWS Key Management Service (AWS KMS) key that you want Kinesis Video Streams to use to encrypt stream data. If no key ID is specified, the default, Kinesis Video-managed key (
aws/kinesisvideo
) is used. - media
Type string - The media type of the stream. Consumers of the stream can use this information when processing the stream. For more information about media types, see Media Types. If you choose to specify the MediaType, see Naming Requirements for guidelines.
- name string
- A name to identify the stream. This is unique to the AWS account and region the Stream is created in.
- {[key: string]: string}
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- data_
retention_ intin_ hours - The number of hours that you want to retain the data in the stream. Kinesis Video Streams retains the data in a data store that is associated with the stream. The default value is
0
, indicating that the stream does not persist data. - device_
name str - The name of the device that is writing to the stream. In the current implementation, Kinesis Video Streams does not use this name.
- kms_
key_ strid - The ID of the AWS Key Management Service (AWS KMS) key that you want Kinesis Video Streams to use to encrypt stream data. If no key ID is specified, the default, Kinesis Video-managed key (
aws/kinesisvideo
) is used. - media_
type str - The media type of the stream. Consumers of the stream can use this information when processing the stream. For more information about media types, see Media Types. If you choose to specify the MediaType, see Naming Requirements for guidelines.
- name str
- A name to identify the stream. This is unique to the AWS account and region the Stream is created in.
- Mapping[str, str]
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- data
Retention NumberIn Hours - The number of hours that you want to retain the data in the stream. Kinesis Video Streams retains the data in a data store that is associated with the stream. The default value is
0
, indicating that the stream does not persist data. - device
Name String - The name of the device that is writing to the stream. In the current implementation, Kinesis Video Streams does not use this name.
- kms
Key StringId - The ID of the AWS Key Management Service (AWS KMS) key that you want Kinesis Video Streams to use to encrypt stream data. If no key ID is specified, the default, Kinesis Video-managed key (
aws/kinesisvideo
) is used. - media
Type String - The media type of the stream. Consumers of the stream can use this information when processing the stream. For more information about media types, see Media Types. If you choose to specify the MediaType, see Naming Requirements for guidelines.
- name String
- A name to identify the stream. This is unique to the AWS account and region the Stream is created in.
- Map<String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
Outputs
All input properties are implicitly available as output properties. Additionally, the VideoStream resource produces the following output properties:
- Arn string
- The Amazon Resource Name (ARN) specifying the Stream (same as
id
) - Creation
Time string - A time stamp that indicates when the stream was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Version string
- The version of the stream.
- Arn string
- The Amazon Resource Name (ARN) specifying the Stream (same as
id
) - Creation
Time string - A time stamp that indicates when the stream was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Version string
- The version of the stream.
- arn String
- The Amazon Resource Name (ARN) specifying the Stream (same as
id
) - creation
Time String - A time stamp that indicates when the stream was created.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - version String
- The version of the stream.
- arn string
- The Amazon Resource Name (ARN) specifying the Stream (same as
id
) - creation
Time string - A time stamp that indicates when the stream was created.
- id string
- The provider-assigned unique ID for this managed resource.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - version string
- The version of the stream.
- arn str
- The Amazon Resource Name (ARN) specifying the Stream (same as
id
) - creation_
time str - A time stamp that indicates when the stream was created.
- id str
- The provider-assigned unique ID for this managed resource.
- Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - version str
- The version of the stream.
- arn String
- The Amazon Resource Name (ARN) specifying the Stream (same as
id
) - creation
Time String - A time stamp that indicates when the stream was created.
- id String
- The provider-assigned unique ID for this managed resource.
- Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - version String
- The version of the stream.
Look up Existing VideoStream Resource
Get an existing VideoStream 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?: VideoStreamState, opts?: CustomResourceOptions): VideoStream
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
creation_time: Optional[str] = None,
data_retention_in_hours: Optional[int] = None,
device_name: Optional[str] = None,
kms_key_id: Optional[str] = None,
media_type: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
version: Optional[str] = None) -> VideoStream
func GetVideoStream(ctx *Context, name string, id IDInput, state *VideoStreamState, opts ...ResourceOption) (*VideoStream, error)
public static VideoStream Get(string name, Input<string> id, VideoStreamState? state, CustomResourceOptions? opts = null)
public static VideoStream get(String name, Output<String> id, VideoStreamState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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.
- Arn string
- The Amazon Resource Name (ARN) specifying the Stream (same as
id
) - Creation
Time string - A time stamp that indicates when the stream was created.
- Data
Retention intIn Hours - The number of hours that you want to retain the data in the stream. Kinesis Video Streams retains the data in a data store that is associated with the stream. The default value is
0
, indicating that the stream does not persist data. - Device
Name string - The name of the device that is writing to the stream. In the current implementation, Kinesis Video Streams does not use this name.
- Kms
Key stringId - The ID of the AWS Key Management Service (AWS KMS) key that you want Kinesis Video Streams to use to encrypt stream data. If no key ID is specified, the default, Kinesis Video-managed key (
aws/kinesisvideo
) is used. - Media
Type string - The media type of the stream. Consumers of the stream can use this information when processing the stream. For more information about media types, see Media Types. If you choose to specify the MediaType, see Naming Requirements for guidelines.
- Name string
- A name to identify the stream. This is unique to the AWS account and region the Stream is created in.
- Dictionary<string, string>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Version string
- The version of the stream.
- Arn string
- The Amazon Resource Name (ARN) specifying the Stream (same as
id
) - Creation
Time string - A time stamp that indicates when the stream was created.
- Data
Retention intIn Hours - The number of hours that you want to retain the data in the stream. Kinesis Video Streams retains the data in a data store that is associated with the stream. The default value is
0
, indicating that the stream does not persist data. - Device
Name string - The name of the device that is writing to the stream. In the current implementation, Kinesis Video Streams does not use this name.
- Kms
Key stringId - The ID of the AWS Key Management Service (AWS KMS) key that you want Kinesis Video Streams to use to encrypt stream data. If no key ID is specified, the default, Kinesis Video-managed key (
aws/kinesisvideo
) is used. - Media
Type string - The media type of the stream. Consumers of the stream can use this information when processing the stream. For more information about media types, see Media Types. If you choose to specify the MediaType, see Naming Requirements for guidelines.
- Name string
- A name to identify the stream. This is unique to the AWS account and region the Stream is created in.
- map[string]string
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Version string
- The version of the stream.
- arn String
- The Amazon Resource Name (ARN) specifying the Stream (same as
id
) - creation
Time String - A time stamp that indicates when the stream was created.
- data
Retention IntegerIn Hours - The number of hours that you want to retain the data in the stream. Kinesis Video Streams retains the data in a data store that is associated with the stream. The default value is
0
, indicating that the stream does not persist data. - device
Name String - The name of the device that is writing to the stream. In the current implementation, Kinesis Video Streams does not use this name.
- kms
Key StringId - The ID of the AWS Key Management Service (AWS KMS) key that you want Kinesis Video Streams to use to encrypt stream data. If no key ID is specified, the default, Kinesis Video-managed key (
aws/kinesisvideo
) is used. - media
Type String - The media type of the stream. Consumers of the stream can use this information when processing the stream. For more information about media types, see Media Types. If you choose to specify the MediaType, see Naming Requirements for guidelines.
- name String
- A name to identify the stream. This is unique to the AWS account and region the Stream is created in.
- Map<String,String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - version String
- The version of the stream.
- arn string
- The Amazon Resource Name (ARN) specifying the Stream (same as
id
) - creation
Time string - A time stamp that indicates when the stream was created.
- data
Retention numberIn Hours - The number of hours that you want to retain the data in the stream. Kinesis Video Streams retains the data in a data store that is associated with the stream. The default value is
0
, indicating that the stream does not persist data. - device
Name string - The name of the device that is writing to the stream. In the current implementation, Kinesis Video Streams does not use this name.
- kms
Key stringId - The ID of the AWS Key Management Service (AWS KMS) key that you want Kinesis Video Streams to use to encrypt stream data. If no key ID is specified, the default, Kinesis Video-managed key (
aws/kinesisvideo
) is used. - media
Type string - The media type of the stream. Consumers of the stream can use this information when processing the stream. For more information about media types, see Media Types. If you choose to specify the MediaType, see Naming Requirements for guidelines.
- name string
- A name to identify the stream. This is unique to the AWS account and region the Stream is created in.
- {[key: string]: string}
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - version string
- The version of the stream.
- arn str
- The Amazon Resource Name (ARN) specifying the Stream (same as
id
) - creation_
time str - A time stamp that indicates when the stream was created.
- data_
retention_ intin_ hours - The number of hours that you want to retain the data in the stream. Kinesis Video Streams retains the data in a data store that is associated with the stream. The default value is
0
, indicating that the stream does not persist data. - device_
name str - The name of the device that is writing to the stream. In the current implementation, Kinesis Video Streams does not use this name.
- kms_
key_ strid - The ID of the AWS Key Management Service (AWS KMS) key that you want Kinesis Video Streams to use to encrypt stream data. If no key ID is specified, the default, Kinesis Video-managed key (
aws/kinesisvideo
) is used. - media_
type str - The media type of the stream. Consumers of the stream can use this information when processing the stream. For more information about media types, see Media Types. If you choose to specify the MediaType, see Naming Requirements for guidelines.
- name str
- A name to identify the stream. This is unique to the AWS account and region the Stream is created in.
- Mapping[str, str]
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - version str
- The version of the stream.
- arn String
- The Amazon Resource Name (ARN) specifying the Stream (same as
id
) - creation
Time String - A time stamp that indicates when the stream was created.
- data
Retention NumberIn Hours - The number of hours that you want to retain the data in the stream. Kinesis Video Streams retains the data in a data store that is associated with the stream. The default value is
0
, indicating that the stream does not persist data. - device
Name String - The name of the device that is writing to the stream. In the current implementation, Kinesis Video Streams does not use this name.
- kms
Key StringId - The ID of the AWS Key Management Service (AWS KMS) key that you want Kinesis Video Streams to use to encrypt stream data. If no key ID is specified, the default, Kinesis Video-managed key (
aws/kinesisvideo
) is used. - media
Type String - The media type of the stream. Consumers of the stream can use this information when processing the stream. For more information about media types, see Media Types. If you choose to specify the MediaType, see Naming Requirements for guidelines.
- name String
- A name to identify the stream. This is unique to the AWS account and region the Stream is created in.
- Map<String>
- A map of tags to assign to the resource. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - version String
- The version of the stream.
Import
Using pulumi import
, import Kinesis Streams using the arn
. For example:
$ pulumi import aws:kinesis/videoStream:VideoStream test_stream arn:aws:kinesisvideo:us-west-2:123456789012:stream/pulumi-kinesis-test/1554978910975
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.