Interface CfnSoftwarePackageVersionPropsMixin.PackageVersionArtifactProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSoftwarePackageVersionPropsMixin.PackageVersionArtifactProperty.Jsii$Proxy
- Enclosing class:
CfnSoftwarePackageVersionPropsMixin
@Stability(Stable)
public static interface CfnSoftwarePackageVersionPropsMixin.PackageVersionArtifactProperty
extends software.amazon.jsii.JsiiSerializable
The artifact location of the package version.
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.iot.*;
PackageVersionArtifactProperty packageVersionArtifactProperty = PackageVersionArtifactProperty.builder()
.s3Location(S3LocationProperty.builder()
.bucket("bucket")
.key("key")
.version("version")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnSoftwarePackageVersionPropsMixin.PackageVersionArtifactProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Location
The Amazon S3 location.Returns union: either
IResolvableorCfnSoftwarePackageVersionPropsMixin.S3LocationProperty- See Also:
-
builder
@Stability(Stable) static CfnSoftwarePackageVersionPropsMixin.PackageVersionArtifactProperty.Builder builder()
-