CfnSiteProps
- class aws_cdk.aws_outposts.CfnSiteProps(*, name, description=None, notes=None, operating_address=None, rack_physical_properties=None, shipping_address=None, tags=None)
Bases:
objectProperties for defining a
CfnSite.- Parameters:
name (
str)description (
Optional[str])notes (
Optional[str])operating_address (
Union[IResolvable,AddressProperty,Dict[str,Any],None])rack_physical_properties (
Union[IResolvable,RackPhysicalPropertiesProperty,Dict[str,Any],None])shipping_address (
Union[IResolvable,AddressProperty,Dict[str,Any],None])tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]])
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-outposts-site.html
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_outposts as outposts cfn_site_props = outposts.CfnSiteProps( name="name", # the properties below are optional description="description", notes="notes", operating_address=outposts.CfnSite.AddressProperty( address_line1="addressLine1", city="city", contact_name="contactName", contact_phone_number="contactPhoneNumber", country_code="countryCode", postal_code="postalCode", state_or_region="stateOrRegion", # the properties below are optional address_line2="addressLine2", address_line3="addressLine3", district_or_county="districtOrCounty", municipality="municipality" ), rack_physical_properties=outposts.CfnSite.RackPhysicalPropertiesProperty( fiber_optic_cable_type="fiberOpticCableType", maximum_supported_weight_lbs="maximumSupportedWeightLbs", optical_standard="opticalStandard", power_connector="powerConnector", power_draw_kva="powerDrawKva", power_feed_drop="powerFeedDrop", power_phase="powerPhase", uplink_count="uplinkCount", uplink_gbps="uplinkGbps" ), shipping_address=outposts.CfnSite.AddressProperty( address_line1="addressLine1", city="city", contact_name="contactName", contact_phone_number="contactPhoneNumber", country_code="countryCode", postal_code="postalCode", state_or_region="stateOrRegion", # the properties below are optional address_line2="addressLine2", address_line3="addressLine3", district_or_county="districtOrCounty", municipality="municipality" ), tags=[CfnTag( key="key", value="value" )] )
Attributes
- description
-
- Type:
see
- name
-
- Type:
see
- notes
-
- Type:
see
- operating_address
-
- Type:
see
- rack_physical_properties
-
- Type:
see
- shipping_address
-
- Type:
see