Interface CfnStreamingImageProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnStreamingImageProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:13.184Z")
@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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnStreamingImagePropsstatic final classAn implementation forCfnStreamingImageProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA 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.- See Also:
-
getName
A friendly name for a streaming image resource.- See Also:
-
getStudioId
The unique identifier for a studio resource.In Nimble Studio, all other resources are contained in a studio resource.
- See Also:
-
getDescription
A human-readable description of the streaming image.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
- See Also:
-
builder
- Returns:
- a
CfnStreamingImageProps.BuilderofCfnStreamingImageProps
-