1. Packages
  2. AWS
  3. API Docs
  4. ivs
  5. RecordingConfiguration
AWS v6.73.0 published on Wednesday, Mar 19, 2025 by Pulumi

aws.ivs.RecordingConfiguration

Explore with Pulumi AI

Resource for managing an AWS IVS (Interactive Video) Recording Configuration.

Example Usage

Basic Usage

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

const example = new aws.ivs.RecordingConfiguration("example", {
    name: "recording_configuration-1",
    destinationConfiguration: {
        s3: {
            bucketName: "ivs-stream-archive",
        },
    },
});
Copy
import pulumi
import pulumi_aws as aws

example = aws.ivs.RecordingConfiguration("example",
    name="recording_configuration-1",
    destination_configuration={
        "s3": {
            "bucket_name": "ivs-stream-archive",
        },
    })
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := ivs.NewRecordingConfiguration(ctx, "example", &ivs.RecordingConfigurationArgs{
			Name: pulumi.String("recording_configuration-1"),
			DestinationConfiguration: &ivs.RecordingConfigurationDestinationConfigurationArgs{
				S3: &ivs.RecordingConfigurationDestinationConfigurationS3Args{
					BucketName: pulumi.String("ivs-stream-archive"),
				},
			},
		})
		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 example = new Aws.Ivs.RecordingConfiguration("example", new()
    {
        Name = "recording_configuration-1",
        DestinationConfiguration = new Aws.Ivs.Inputs.RecordingConfigurationDestinationConfigurationArgs
        {
            S3 = new Aws.Ivs.Inputs.RecordingConfigurationDestinationConfigurationS3Args
            {
                BucketName = "ivs-stream-archive",
            },
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.ivs.RecordingConfiguration;
import com.pulumi.aws.ivs.RecordingConfigurationArgs;
import com.pulumi.aws.ivs.inputs.RecordingConfigurationDestinationConfigurationArgs;
import com.pulumi.aws.ivs.inputs.RecordingConfigurationDestinationConfigurationS3Args;
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 example = new RecordingConfiguration("example", RecordingConfigurationArgs.builder()
            .name("recording_configuration-1")
            .destinationConfiguration(RecordingConfigurationDestinationConfigurationArgs.builder()
                .s3(RecordingConfigurationDestinationConfigurationS3Args.builder()
                    .bucketName("ivs-stream-archive")
                    .build())
                .build())
            .build());

    }
}
Copy
resources:
  example:
    type: aws:ivs:RecordingConfiguration
    properties:
      name: recording_configuration-1
      destinationConfiguration:
        s3:
          bucketName: ivs-stream-archive
Copy

Create RecordingConfiguration Resource

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

Constructor syntax

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

@overload
def RecordingConfiguration(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           destination_configuration: Optional[RecordingConfigurationDestinationConfigurationArgs] = None,
                           name: Optional[str] = None,
                           recording_reconnect_window_seconds: Optional[int] = None,
                           tags: Optional[Mapping[str, str]] = None,
                           thumbnail_configuration: Optional[RecordingConfigurationThumbnailConfigurationArgs] = None)
func NewRecordingConfiguration(ctx *Context, name string, args RecordingConfigurationArgs, opts ...ResourceOption) (*RecordingConfiguration, error)
public RecordingConfiguration(string name, RecordingConfigurationArgs args, CustomResourceOptions? opts = null)
public RecordingConfiguration(String name, RecordingConfigurationArgs args)
public RecordingConfiguration(String name, RecordingConfigurationArgs args, CustomResourceOptions options)
type: aws:ivs:RecordingConfiguration
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. RecordingConfigurationArgs
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. RecordingConfigurationArgs
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. RecordingConfigurationArgs
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. RecordingConfigurationArgs
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. RecordingConfigurationArgs
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 recordingConfigurationResource = new Aws.Ivs.RecordingConfiguration("recordingConfigurationResource", new()
{
    DestinationConfiguration = new Aws.Ivs.Inputs.RecordingConfigurationDestinationConfigurationArgs
    {
        S3 = new Aws.Ivs.Inputs.RecordingConfigurationDestinationConfigurationS3Args
        {
            BucketName = "string",
        },
    },
    Name = "string",
    RecordingReconnectWindowSeconds = 0,
    Tags = 
    {
        { "string", "string" },
    },
    ThumbnailConfiguration = new Aws.Ivs.Inputs.RecordingConfigurationThumbnailConfigurationArgs
    {
        RecordingMode = "string",
        TargetIntervalSeconds = 0,
    },
});
Copy
example, err := ivs.NewRecordingConfiguration(ctx, "recordingConfigurationResource", &ivs.RecordingConfigurationArgs{
	DestinationConfiguration: &ivs.RecordingConfigurationDestinationConfigurationArgs{
		S3: &ivs.RecordingConfigurationDestinationConfigurationS3Args{
			BucketName: pulumi.String("string"),
		},
	},
	Name:                            pulumi.String("string"),
	RecordingReconnectWindowSeconds: pulumi.Int(0),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	ThumbnailConfiguration: &ivs.RecordingConfigurationThumbnailConfigurationArgs{
		RecordingMode:         pulumi.String("string"),
		TargetIntervalSeconds: pulumi.Int(0),
	},
})
Copy
var recordingConfigurationResource = new RecordingConfiguration("recordingConfigurationResource", RecordingConfigurationArgs.builder()
    .destinationConfiguration(RecordingConfigurationDestinationConfigurationArgs.builder()
        .s3(RecordingConfigurationDestinationConfigurationS3Args.builder()
            .bucketName("string")
            .build())
        .build())
    .name("string")
    .recordingReconnectWindowSeconds(0)
    .tags(Map.of("string", "string"))
    .thumbnailConfiguration(RecordingConfigurationThumbnailConfigurationArgs.builder()
        .recordingMode("string")
        .targetIntervalSeconds(0)
        .build())
    .build());
Copy
recording_configuration_resource = aws.ivs.RecordingConfiguration("recordingConfigurationResource",
    destination_configuration={
        "s3": {
            "bucket_name": "string",
        },
    },
    name="string",
    recording_reconnect_window_seconds=0,
    tags={
        "string": "string",
    },
    thumbnail_configuration={
        "recording_mode": "string",
        "target_interval_seconds": 0,
    })
Copy
const recordingConfigurationResource = new aws.ivs.RecordingConfiguration("recordingConfigurationResource", {
    destinationConfiguration: {
        s3: {
            bucketName: "string",
        },
    },
    name: "string",
    recordingReconnectWindowSeconds: 0,
    tags: {
        string: "string",
    },
    thumbnailConfiguration: {
        recordingMode: "string",
        targetIntervalSeconds: 0,
    },
});
Copy
type: aws:ivs:RecordingConfiguration
properties:
    destinationConfiguration:
        s3:
            bucketName: string
    name: string
    recordingReconnectWindowSeconds: 0
    tags:
        string: string
    thumbnailConfiguration:
        recordingMode: string
        targetIntervalSeconds: 0
Copy

RecordingConfiguration 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 RecordingConfiguration resource accepts the following input properties:

DestinationConfiguration
This property is required.
Changes to this property will trigger replacement.
RecordingConfigurationDestinationConfiguration
Object containing destination configuration for where recorded video will be stored.
Name Changes to this property will trigger replacement. string
Recording Configuration name.
RecordingReconnectWindowSeconds Changes to this property will trigger replacement. int
If a broadcast disconnects and then reconnects within the specified interval, the multiple streams will be considered a single broadcast and merged together.
Tags Changes to this property will trigger replacement. 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.
ThumbnailConfiguration Changes to this property will trigger replacement. RecordingConfigurationThumbnailConfiguration
Object containing information to enable/disable the recording of thumbnails for a live session and modify the interval at which thumbnails are generated for the live session.
DestinationConfiguration
This property is required.
Changes to this property will trigger replacement.
RecordingConfigurationDestinationConfigurationArgs
Object containing destination configuration for where recorded video will be stored.
Name Changes to this property will trigger replacement. string
Recording Configuration name.
RecordingReconnectWindowSeconds Changes to this property will trigger replacement. int
If a broadcast disconnects and then reconnects within the specified interval, the multiple streams will be considered a single broadcast and merged together.
Tags Changes to this property will trigger replacement. 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.
ThumbnailConfiguration Changes to this property will trigger replacement. RecordingConfigurationThumbnailConfigurationArgs
Object containing information to enable/disable the recording of thumbnails for a live session and modify the interval at which thumbnails are generated for the live session.
destinationConfiguration
This property is required.
Changes to this property will trigger replacement.
RecordingConfigurationDestinationConfiguration
Object containing destination configuration for where recorded video will be stored.
name Changes to this property will trigger replacement. String
Recording Configuration name.
recordingReconnectWindowSeconds Changes to this property will trigger replacement. Integer
If a broadcast disconnects and then reconnects within the specified interval, the multiple streams will be considered a single broadcast and merged together.
tags Changes to this property will trigger replacement. 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.
thumbnailConfiguration Changes to this property will trigger replacement. RecordingConfigurationThumbnailConfiguration
Object containing information to enable/disable the recording of thumbnails for a live session and modify the interval at which thumbnails are generated for the live session.
destinationConfiguration
This property is required.
Changes to this property will trigger replacement.
RecordingConfigurationDestinationConfiguration
Object containing destination configuration for where recorded video will be stored.
name Changes to this property will trigger replacement. string
Recording Configuration name.
recordingReconnectWindowSeconds Changes to this property will trigger replacement. number
If a broadcast disconnects and then reconnects within the specified interval, the multiple streams will be considered a single broadcast and merged together.
tags Changes to this property will trigger replacement. {[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.
thumbnailConfiguration Changes to this property will trigger replacement. RecordingConfigurationThumbnailConfiguration
Object containing information to enable/disable the recording of thumbnails for a live session and modify the interval at which thumbnails are generated for the live session.
destination_configuration
This property is required.
Changes to this property will trigger replacement.
RecordingConfigurationDestinationConfigurationArgs
Object containing destination configuration for where recorded video will be stored.
name Changes to this property will trigger replacement. str
Recording Configuration name.
recording_reconnect_window_seconds Changes to this property will trigger replacement. int
If a broadcast disconnects and then reconnects within the specified interval, the multiple streams will be considered a single broadcast and merged together.
tags Changes to this property will trigger replacement. 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.
thumbnail_configuration Changes to this property will trigger replacement. RecordingConfigurationThumbnailConfigurationArgs
Object containing information to enable/disable the recording of thumbnails for a live session and modify the interval at which thumbnails are generated for the live session.
destinationConfiguration
This property is required.
Changes to this property will trigger replacement.
Property Map
Object containing destination configuration for where recorded video will be stored.
name Changes to this property will trigger replacement. String
Recording Configuration name.
recordingReconnectWindowSeconds Changes to this property will trigger replacement. Number
If a broadcast disconnects and then reconnects within the specified interval, the multiple streams will be considered a single broadcast and merged together.
tags Changes to this property will trigger replacement. 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.
thumbnailConfiguration Changes to this property will trigger replacement. Property Map
Object containing information to enable/disable the recording of thumbnails for a live session and modify the interval at which thumbnails are generated for the live session.

Outputs

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

Arn string
ARN of the Recording Configuration.
Id string
The provider-assigned unique ID for this managed resource.
State string
The current state of the Recording Configuration.
TagsAll Dictionary<string, string>
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Arn string
ARN of the Recording Configuration.
Id string
The provider-assigned unique ID for this managed resource.
State string
The current state of the Recording Configuration.
TagsAll map[string]string
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
ARN of the Recording Configuration.
id String
The provider-assigned unique ID for this managed resource.
state String
The current state of the Recording Configuration.
tagsAll Map<String,String>
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn string
ARN of the Recording Configuration.
id string
The provider-assigned unique ID for this managed resource.
state string
The current state of the Recording Configuration.
tagsAll {[key: string]: string}
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn str
ARN of the Recording Configuration.
id str
The provider-assigned unique ID for this managed resource.
state str
The current state of the Recording Configuration.
tags_all Mapping[str, str]
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
ARN of the Recording Configuration.
id String
The provider-assigned unique ID for this managed resource.
state String
The current state of the Recording Configuration.
tagsAll Map<String>
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Look up Existing RecordingConfiguration Resource

Get an existing RecordingConfiguration 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?: RecordingConfigurationState, opts?: CustomResourceOptions): RecordingConfiguration
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arn: Optional[str] = None,
        destination_configuration: Optional[RecordingConfigurationDestinationConfigurationArgs] = None,
        name: Optional[str] = None,
        recording_reconnect_window_seconds: Optional[int] = None,
        state: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None,
        thumbnail_configuration: Optional[RecordingConfigurationThumbnailConfigurationArgs] = None) -> RecordingConfiguration
func GetRecordingConfiguration(ctx *Context, name string, id IDInput, state *RecordingConfigurationState, opts ...ResourceOption) (*RecordingConfiguration, error)
public static RecordingConfiguration Get(string name, Input<string> id, RecordingConfigurationState? state, CustomResourceOptions? opts = null)
public static RecordingConfiguration get(String name, Output<String> id, RecordingConfigurationState state, CustomResourceOptions options)
resources:  _:    type: aws:ivs:RecordingConfiguration    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:
Arn string
ARN of the Recording Configuration.
DestinationConfiguration Changes to this property will trigger replacement. RecordingConfigurationDestinationConfiguration
Object containing destination configuration for where recorded video will be stored.
Name Changes to this property will trigger replacement. string
Recording Configuration name.
RecordingReconnectWindowSeconds Changes to this property will trigger replacement. int
If a broadcast disconnects and then reconnects within the specified interval, the multiple streams will be considered a single broadcast and merged together.
State string
The current state of the Recording Configuration.
Tags Changes to this property will trigger replacement. 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.
TagsAll Changes to this property will trigger replacement. Dictionary<string, string>
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

ThumbnailConfiguration Changes to this property will trigger replacement. RecordingConfigurationThumbnailConfiguration
Object containing information to enable/disable the recording of thumbnails for a live session and modify the interval at which thumbnails are generated for the live session.
Arn string
ARN of the Recording Configuration.
DestinationConfiguration Changes to this property will trigger replacement. RecordingConfigurationDestinationConfigurationArgs
Object containing destination configuration for where recorded video will be stored.
Name Changes to this property will trigger replacement. string
Recording Configuration name.
RecordingReconnectWindowSeconds Changes to this property will trigger replacement. int
If a broadcast disconnects and then reconnects within the specified interval, the multiple streams will be considered a single broadcast and merged together.
State string
The current state of the Recording Configuration.
Tags Changes to this property will trigger replacement. 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.
TagsAll Changes to this property will trigger replacement. map[string]string
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

ThumbnailConfiguration Changes to this property will trigger replacement. RecordingConfigurationThumbnailConfigurationArgs
Object containing information to enable/disable the recording of thumbnails for a live session and modify the interval at which thumbnails are generated for the live session.
arn String
ARN of the Recording Configuration.
destinationConfiguration Changes to this property will trigger replacement. RecordingConfigurationDestinationConfiguration
Object containing destination configuration for where recorded video will be stored.
name Changes to this property will trigger replacement. String
Recording Configuration name.
recordingReconnectWindowSeconds Changes to this property will trigger replacement. Integer
If a broadcast disconnects and then reconnects within the specified interval, the multiple streams will be considered a single broadcast and merged together.
state String
The current state of the Recording Configuration.
tags Changes to this property will trigger replacement. 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.
tagsAll Changes to this property will trigger replacement. Map<String,String>
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

thumbnailConfiguration Changes to this property will trigger replacement. RecordingConfigurationThumbnailConfiguration
Object containing information to enable/disable the recording of thumbnails for a live session and modify the interval at which thumbnails are generated for the live session.
arn string
ARN of the Recording Configuration.
destinationConfiguration Changes to this property will trigger replacement. RecordingConfigurationDestinationConfiguration
Object containing destination configuration for where recorded video will be stored.
name Changes to this property will trigger replacement. string
Recording Configuration name.
recordingReconnectWindowSeconds Changes to this property will trigger replacement. number
If a broadcast disconnects and then reconnects within the specified interval, the multiple streams will be considered a single broadcast and merged together.
state string
The current state of the Recording Configuration.
tags Changes to this property will trigger replacement. {[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.
tagsAll Changes to this property will trigger replacement. {[key: string]: string}
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

thumbnailConfiguration Changes to this property will trigger replacement. RecordingConfigurationThumbnailConfiguration
Object containing information to enable/disable the recording of thumbnails for a live session and modify the interval at which thumbnails are generated for the live session.
arn str
ARN of the Recording Configuration.
destination_configuration Changes to this property will trigger replacement. RecordingConfigurationDestinationConfigurationArgs
Object containing destination configuration for where recorded video will be stored.
name Changes to this property will trigger replacement. str
Recording Configuration name.
recording_reconnect_window_seconds Changes to this property will trigger replacement. int
If a broadcast disconnects and then reconnects within the specified interval, the multiple streams will be considered a single broadcast and merged together.
state str
The current state of the Recording Configuration.
tags Changes to this property will trigger replacement. 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.
tags_all Changes to this property will trigger replacement. Mapping[str, str]
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

thumbnail_configuration Changes to this property will trigger replacement. RecordingConfigurationThumbnailConfigurationArgs
Object containing information to enable/disable the recording of thumbnails for a live session and modify the interval at which thumbnails are generated for the live session.
arn String
ARN of the Recording Configuration.
destinationConfiguration Changes to this property will trigger replacement. Property Map
Object containing destination configuration for where recorded video will be stored.
name Changes to this property will trigger replacement. String
Recording Configuration name.
recordingReconnectWindowSeconds Changes to this property will trigger replacement. Number
If a broadcast disconnects and then reconnects within the specified interval, the multiple streams will be considered a single broadcast and merged together.
state String
The current state of the Recording Configuration.
tags Changes to this property will trigger replacement. 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.
tagsAll Changes to this property will trigger replacement. Map<String>
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

thumbnailConfiguration Changes to this property will trigger replacement. Property Map
Object containing information to enable/disable the recording of thumbnails for a live session and modify the interval at which thumbnails are generated for the live session.

Supporting Types

RecordingConfigurationDestinationConfiguration
, RecordingConfigurationDestinationConfigurationArgs

S3 This property is required. RecordingConfigurationDestinationConfigurationS3
S3 destination configuration where recorded videos will be stored.
S3 This property is required. RecordingConfigurationDestinationConfigurationS3
S3 destination configuration where recorded videos will be stored.
s3 This property is required. RecordingConfigurationDestinationConfigurationS3
S3 destination configuration where recorded videos will be stored.
s3 This property is required. RecordingConfigurationDestinationConfigurationS3
S3 destination configuration where recorded videos will be stored.
s3 This property is required. RecordingConfigurationDestinationConfigurationS3
S3 destination configuration where recorded videos will be stored.
s3 This property is required. Property Map
S3 destination configuration where recorded videos will be stored.

RecordingConfigurationDestinationConfigurationS3
, RecordingConfigurationDestinationConfigurationS3Args

BucketName This property is required. string

S3 bucket name where recorded videos will be stored.

The following arguments are optional:

BucketName This property is required. string

S3 bucket name where recorded videos will be stored.

The following arguments are optional:

bucketName This property is required. String

S3 bucket name where recorded videos will be stored.

The following arguments are optional:

bucketName This property is required. string

S3 bucket name where recorded videos will be stored.

The following arguments are optional:

bucket_name This property is required. str

S3 bucket name where recorded videos will be stored.

The following arguments are optional:

bucketName This property is required. String

S3 bucket name where recorded videos will be stored.

The following arguments are optional:

RecordingConfigurationThumbnailConfiguration
, RecordingConfigurationThumbnailConfigurationArgs

RecordingMode string
Thumbnail recording mode. Valid values: DISABLED, INTERVAL.
TargetIntervalSeconds int
The targeted thumbnail-generation interval in seconds.
RecordingMode string
Thumbnail recording mode. Valid values: DISABLED, INTERVAL.
TargetIntervalSeconds int
The targeted thumbnail-generation interval in seconds.
recordingMode String
Thumbnail recording mode. Valid values: DISABLED, INTERVAL.
targetIntervalSeconds Integer
The targeted thumbnail-generation interval in seconds.
recordingMode string
Thumbnail recording mode. Valid values: DISABLED, INTERVAL.
targetIntervalSeconds number
The targeted thumbnail-generation interval in seconds.
recording_mode str
Thumbnail recording mode. Valid values: DISABLED, INTERVAL.
target_interval_seconds int
The targeted thumbnail-generation interval in seconds.
recordingMode String
Thumbnail recording mode. Valid values: DISABLED, INTERVAL.
targetIntervalSeconds Number
The targeted thumbnail-generation interval in seconds.

Import

Using pulumi import, import IVS (Interactive Video) Recording Configuration using the ARN. For example:

$ pulumi import aws:ivs/recordingConfiguration:RecordingConfiguration example arn:aws:ivs:us-west-2:326937407773:recording-configuration/KAk1sHBl2L47
Copy

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.