interface StorageLocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Panorama.CfnPackage.StorageLocationProperty |
Java | software.amazon.awscdk.services.panorama.CfnPackage.StorageLocationProperty |
Python | aws_cdk.aws_panorama.CfnPackage.StorageLocationProperty |
TypeScript | @aws-cdk/aws-panorama » CfnPackage » StorageLocationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as panorama from '@aws-cdk/aws-panorama';
const storageLocationProperty: panorama.CfnPackage.StorageLocationProperty = {
binaryPrefixLocation: 'binaryPrefixLocation',
bucket: 'bucket',
generatedPrefixLocation: 'generatedPrefixLocation',
manifestPrefixLocation: 'manifestPrefixLocation',
repoPrefixLocation: 'repoPrefixLocation',
};
Properties
| Name | Type | Description |
|---|---|---|
| binary | string | CfnPackage.StorageLocationProperty.BinaryPrefixLocation. |
| bucket? | string | CfnPackage.StorageLocationProperty.Bucket. |
| generated | string | CfnPackage.StorageLocationProperty.GeneratedPrefixLocation. |
| manifest | string | CfnPackage.StorageLocationProperty.ManifestPrefixLocation. |
| repo | string | CfnPackage.StorageLocationProperty.RepoPrefixLocation. |
binaryPrefixLocation?
Type:
string
(optional)
CfnPackage.StorageLocationProperty.BinaryPrefixLocation.
bucket?
Type:
string
(optional)
CfnPackage.StorageLocationProperty.Bucket.
generatedPrefixLocation?
Type:
string
(optional)
CfnPackage.StorageLocationProperty.GeneratedPrefixLocation.
manifestPrefixLocation?
Type:
string
(optional)
CfnPackage.StorageLocationProperty.ManifestPrefixLocation.
repoPrefixLocation?
Type:
string
(optional)
CfnPackage.StorageLocationProperty.RepoPrefixLocation.

.NET
Java
Python
TypeScript