CfnStreamingImageProps¶
-
class
aws_cdk.aws_nimblestudio.
CfnStreamingImageProps
(*, ec2_image_id, name, studio_id, description=None, tags=None)¶ Bases:
object
Properties for defining a
CfnStreamingImage
.- Parameters
ec2_image_id (
str
) – The ID of an EC2 machine image with which to create the streaming image.name (
str
) – A friendly name for a streaming image resource.studio_id (
str
) – The unique identifier for a studio resource. In Nimble Studio , all other resources are contained in a studio resource.description (
Optional
[str
]) – A human-readable description of the streaming image.tags (
Optional
[Mapping
[str
,str
]]) – An array of key-value pairs to apply to this resource. For more information, see Tag .
- Link
- ExampleMetadata
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. import aws_cdk.aws_nimblestudio as nimblestudio cfn_streaming_image_props = nimblestudio.CfnStreamingImageProps( ec2_image_id="ec2ImageId", name="name", studio_id="studioId", # the properties below are optional description="description", tags={ "tags_key": "tags" } )
Attributes
-
description
¶ A human-readable description of the streaming image.
-
ec2_image_id
¶ The ID of an EC2 machine image with which to create the streaming image.
-
name
¶ A friendly name for a streaming image resource.
-
studio_id
¶ The unique identifier for a studio resource.
In Nimble Studio , all other resources are contained in a studio resource.
An array of key-value pairs to apply to this resource.
For more information, see Tag .
- Link
- Return type
Optional
[Mapping
[str
,str
]]