CfnSiteMixinProps
- class aws_cdk.cfn_property_mixins.aws_outposts.CfnSiteMixinProps(*, description=None, name=None, notes=None, operating_address=None, rack_physical_properties=None, shipping_address=None, tags=None)
Bases:
objectProperties for CfnSitePropsMixin.
- Parameters:
description (
Optional[str])name (
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.cfn_property_mixins import aws_outposts as outposts cfn_site_mixin_props = outposts.CfnSiteMixinProps( description="description", name="name", notes="notes", operating_address=outposts.CfnSitePropsMixin.AddressProperty( address_line1="addressLine1", address_line2="addressLine2", address_line3="addressLine3", city="city", contact_name="contactName", contact_phone_number="contactPhoneNumber", country_code="countryCode", district_or_county="districtOrCounty", municipality="municipality", postal_code="postalCode", state_or_region="stateOrRegion" ), rack_physical_properties=outposts.CfnSitePropsMixin.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.CfnSitePropsMixin.AddressProperty( address_line1="addressLine1", address_line2="addressLine2", address_line3="addressLine3", city="city", contact_name="contactName", contact_phone_number="contactPhoneNumber", country_code="countryCode", district_or_county="districtOrCounty", municipality="municipality", postal_code="postalCode", state_or_region="stateOrRegion" ), 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