interface AddressProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Outposts.CfnSitePropsMixin.AddressProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsoutposts#CfnSitePropsMixin_AddressProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.outposts.CfnSitePropsMixin.AddressProperty |
Python | aws_cdk.cfn_property_mixins.aws_outposts.CfnSitePropsMixin.AddressProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_outposts » CfnSitePropsMixin » AddressProperty |
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/cfn-property-mixins';
const addressProperty: outposts.CfnSitePropsMixin.AddressProperty = {
addressLine1: 'addressLine1',
addressLine2: 'addressLine2',
addressLine3: 'addressLine3',
city: 'city',
contactName: 'contactName',
contactPhoneNumber: 'contactPhoneNumber',
countryCode: 'countryCode',
districtOrCounty: 'districtOrCounty',
municipality: 'municipality',
postalCode: 'postalCode',
stateOrRegion: 'stateOrRegion',
};
Properties
| Name | Type | Description |
|---|---|---|
| address | string | |
| address | string | |
| address | string | |
| city? | string | |
| contact | string | |
| contact | string | |
| country | string | |
| district | string | |
| municipality? | string | |
| postal | string | |
| state | string |
addressLine1?
Type:
string
(optional)
addressLine2?
Type:
string
(optional)
addressLine3?
Type:
string
(optional)
city?
Type:
string
(optional)
contactName?
Type:
string
(optional)
contactPhoneNumber?
Type:
string
(optional)
countryCode?
Type:
string
(optional)
districtOrCounty?
Type:
string
(optional)
municipality?
Type:
string
(optional)
postalCode?
Type:
string
(optional)
stateOrRegion?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript