interface CfnStreamingImageProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.NimbleStudio.CfnStreamingImageProps |
Java | software.amazon.awscdk.services.nimblestudio.CfnStreamingImageProps |
Python | aws_cdk.aws_nimblestudio.CfnStreamingImageProps |
TypeScript | @aws-cdk/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 * as nimblestudio from '@aws-cdk/aws-nimblestudio';
const cfnStreamingImageProps: nimblestudio.CfnStreamingImageProps = {
ec2ImageId: 'ec2ImageId',
name: 'name',
studioId: 'studioId',
// the properties below are optional
description: 'description',
tags: {
tagsKey: 'tags',
},
};
Properties
Name | Type | Description |
---|---|---|
ec2 | string | The ID of an EC2 machine image with which to create the streaming image. |
name | string | A friendly name for a streaming image resource. |
studio | string | The unique identifier for a studio resource. |
description? | string | A 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 .