Interface CfnResourceDefinitionVersionMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnResourceDefinitionVersionMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-19T12:55:20.911Z")
@Stability(Stable)
public interface CfnResourceDefinitionVersionMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnResourceDefinitionVersionPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.greengrass.*;
CfnResourceDefinitionVersionMixinProps cfnResourceDefinitionVersionMixinProps = CfnResourceDefinitionVersionMixinProps.builder()
.resourceDefinitionId("resourceDefinitionId")
.resources(List.of(ResourceInstanceProperty.builder()
.id("id")
.name("name")
.resourceDataContainer(ResourceDataContainerProperty.builder()
.localDeviceResourceData(LocalDeviceResourceDataProperty.builder()
.groupOwnerSetting(GroupOwnerSettingProperty.builder()
.autoAddGroupOwner(false)
.groupOwner("groupOwner")
.build())
.sourcePath("sourcePath")
.build())
.localVolumeResourceData(LocalVolumeResourceDataProperty.builder()
.destinationPath("destinationPath")
.groupOwnerSetting(GroupOwnerSettingProperty.builder()
.autoAddGroupOwner(false)
.groupOwner("groupOwner")
.build())
.sourcePath("sourcePath")
.build())
.s3MachineLearningModelResourceData(S3MachineLearningModelResourceDataProperty.builder()
.destinationPath("destinationPath")
.ownerSetting(ResourceDownloadOwnerSettingProperty.builder()
.groupOwner("groupOwner")
.groupPermission("groupPermission")
.build())
.s3Uri("s3Uri")
.build())
.sageMakerMachineLearningModelResourceData(SageMakerMachineLearningModelResourceDataProperty.builder()
.destinationPath("destinationPath")
.ownerSetting(ResourceDownloadOwnerSettingProperty.builder()
.groupOwner("groupOwner")
.groupPermission("groupPermission")
.build())
.sageMakerJobArn("sageMakerJobArn")
.build())
.secretsManagerSecretResourceData(SecretsManagerSecretResourceDataProperty.builder()
.additionalStagingLabelsToDownload(List.of("additionalStagingLabelsToDownload"))
.arn("arn")
.build())
.build())
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnResourceDefinitionVersionMixinPropsstatic final classAn implementation forCfnResourceDefinitionVersionMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getResourceDefinitionId
The ID of the resource definition associated with this version.This value is a GUID.
- See Also:
-
getResources
The resources in this version.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnResourceDefinitionVersionPropsMixin.ResourceInstanceProperty>- See Also:
-
builder
-