aws-cdk-lib.aws_nimblestudio.CfnStreamingImageProps

interface CfnStreamingImageProps

LanguageType name
.NETAmazon.CDK.AWS.NimbleStudio.CfnStreamingImageProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsnimblestudio#CfnStreamingImageProps
Javasoftware.amazon.awscdk.services.nimblestudio.CfnStreamingImageProps
Pythonaws_cdk.aws_nimblestudio.CfnStreamingImageProps
TypeScript aws-cdk-lib » aws_nimblestudio » CfnStreamingImageProps

Properties for defining a CfnStreamingImage.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_nimblestudio as nimblestudio } from 'aws-cdk-lib';
const cfnStreamingImageProps: nimblestudio.CfnStreamingImageProps = {
  ec2ImageId: 'ec2ImageId',
  name: 'name',
  studioId: 'studioId',

  // the properties below are optional
  description: 'description',
  tags: {
    tagsKey: 'tags',
  },
};

Properties

NameTypeDescription
ec2ImageIdstringThe ID of an EC2 machine image with which to create the streaming image.
namestringA friendly name for a streaming image resource.
studioIdstringThe unique identifier for a studio resource.
description?stringA human-readable description of the streaming image.
tags?{ [string]: string }An array of key-value pairs to apply to this resource.

ec2ImageId

Type: string

The ID of an EC2 machine image with which to create the streaming image.


name

Type: string

A friendly name for a streaming image resource.


studioId

Type: string

The unique identifier for a studio resource.

In Nimble Studio , all other resources are contained in a studio resource.


description?

Type: string (optional)

A human-readable description of the streaming image.


tags?

Type: { [string]: string } (optional)

An array of key-value pairs to apply to this resource.

For more information, see Tag .