interface StorageLocationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Panorama.CfnPackagePropsMixin.StorageLocationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awspanorama#CfnPackagePropsMixin_StorageLocationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.panorama.CfnPackagePropsMixin.StorageLocationProperty |
Python | aws_cdk.cfn_property_mixins.aws_panorama.CfnPackagePropsMixin.StorageLocationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_panorama » 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 { aws_panorama as panorama } from '@aws-cdk/cfn-property-mixins';
const storageLocationProperty: panorama.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