Interface CfnStreamingImageProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStreamingImageProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:00.497Z")
@Stability(Stable)
public interface CfnStreamingImageProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.nimblestudio.*; CfnStreamingImageProps cfnStreamingImageProps = CfnStreamingImageProps.builder() .ec2ImageId("ec2ImageId") .name("name") .studioId("studioId") // the properties below are optional .description("description") .tags(Map.of( "tagsKey", "tags")) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnStreamingImageProps
static final class
An implementation forCfnStreamingImageProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
A human-readable description of the streaming image.The ID of an EC2 machine image with which to create the streaming image.getName()
A friendly name for a streaming image resource.The unique identifier for a studio resource.getTags()
An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEc2ImageId
The ID of an EC2 machine image with which to create the streaming image. -
getName
A friendly name for a streaming image resource. -
getStudioId
The unique identifier for a studio resource.In Nimble Studio , all other resources are contained in a studio resource.
-
getDescription
A human-readable description of the streaming image. -
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
-
builder
- Returns:
- a
CfnStreamingImageProps.Builder
ofCfnStreamingImageProps
-