interface StorageLocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Panorama.Mixins.CfnPackagePropsMixin.StorageLocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awspanorama/mixins#CfnPackagePropsMixin_StorageLocationProperty |
Java | software.amazon.awscdk.mixins.preview.services.panorama.mixins.CfnPackagePropsMixin.StorageLocationProperty |
Python | aws_cdk.mixins_preview.aws_panorama.mixins.CfnPackagePropsMixin.StorageLocationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_panorama » mixins » CfnPackagePropsMixin » StorageLocationProperty |
A storage location.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as panorama_mixins } from '@aws-cdk/mixins-preview/aws-panorama';
const storageLocationProperty: panorama_mixins.CfnPackagePropsMixin.StorageLocationProperty = {
binaryPrefixLocation: 'binaryPrefixLocation',
bucket: 'bucket',
generatedPrefixLocation: 'generatedPrefixLocation',
manifestPrefixLocation: 'manifestPrefixLocation',
repoPrefixLocation: 'repoPrefixLocation',
};
Properties
| Name | Type | Description |
|---|---|---|
| binary | string | The location's binary prefix. |
| bucket? | string | The location's bucket. |
| generated | string | The location's generated prefix. |
| manifest | string | The location's manifest prefix. |
| repo | string | The location's repo prefix. |
binaryPrefixLocation?
Type:
string
(optional)
The location's binary prefix.
bucket?
Type:
string
(optional)
The location's bucket.
generatedPrefixLocation?
Type:
string
(optional)
The location's generated prefix.
manifestPrefixLocation?
Type:
string
(optional)
The location's manifest prefix.
repoPrefixLocation?
Type:
string
(optional)
The location's repo prefix.

.NET
Go
Java
Python
TypeScript