interface CfnSiteProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Outposts.CfnSiteProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsoutposts#CfnSiteProps |
Java | software.amazon.awscdk.services.outposts.CfnSiteProps |
Python | aws_cdk.aws_outposts.CfnSiteProps |
TypeScript | aws-cdk-lib » aws_outposts » CfnSiteProps |
Properties for defining a CfnSite.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-outposts-site.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_outposts as outposts } from 'aws-cdk-lib';
const cfnSiteProps: outposts.CfnSiteProps = {
name: 'name',
// the properties below are optional
description: 'description',
notes: 'notes',
operatingAddress: {
addressLine1: 'addressLine1',
city: 'city',
contactName: 'contactName',
contactPhoneNumber: 'contactPhoneNumber',
countryCode: 'countryCode',
postalCode: 'postalCode',
stateOrRegion: 'stateOrRegion',
// the properties below are optional
addressLine2: 'addressLine2',
addressLine3: 'addressLine3',
districtOrCounty: 'districtOrCounty',
municipality: 'municipality',
},
rackPhysicalProperties: {
fiberOpticCableType: 'fiberOpticCableType',
maximumSupportedWeightLbs: 'maximumSupportedWeightLbs',
opticalStandard: 'opticalStandard',
powerConnector: 'powerConnector',
powerDrawKva: 'powerDrawKva',
powerFeedDrop: 'powerFeedDrop',
powerPhase: 'powerPhase',
uplinkCount: 'uplinkCount',
uplinkGbps: 'uplinkGbps',
},
shippingAddress: {
addressLine1: 'addressLine1',
city: 'city',
contactName: 'contactName',
contactPhoneNumber: 'contactPhoneNumber',
countryCode: 'countryCode',
postalCode: 'postalCode',
stateOrRegion: 'stateOrRegion',
// the properties below are optional
addressLine2: 'addressLine2',
addressLine3: 'addressLine3',
districtOrCounty: 'districtOrCounty',
municipality: 'municipality',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| description? | string | |
| notes? | string | |
| operating | IResolvable | Address | |
| rack | IResolvable | Rack | |
| shipping | IResolvable | Address | |
| tags? | Cfn[] |
name
Type:
string
description?
Type:
string
(optional)
notes?
Type:
string
(optional)
operatingAddress?
Type:
IResolvable | Address
(optional)
rackPhysicalProperties?
Type:
IResolvable | Rack
(optional)
shippingAddress?
Type:
IResolvable | Address
(optional)
tags?
Type:
Cfn[]
(optional)

.NET
Go
Java
Python
TypeScript