Interface CfnSiteMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnSiteMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)",
date="2026-07-22T17:37:45.467Z")
@Stability(Stable)
public interface CfnSiteMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnSitePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.outposts.*;
CfnSiteMixinProps cfnSiteMixinProps = CfnSiteMixinProps.builder()
.description("description")
.name("name")
.notes("notes")
.operatingAddress(AddressProperty.builder()
.addressLine1("addressLine1")
.addressLine2("addressLine2")
.addressLine3("addressLine3")
.city("city")
.contactName("contactName")
.contactPhoneNumber("contactPhoneNumber")
.countryCode("countryCode")
.districtOrCounty("districtOrCounty")
.municipality("municipality")
.postalCode("postalCode")
.stateOrRegion("stateOrRegion")
.build())
.rackPhysicalProperties(RackPhysicalPropertiesProperty.builder()
.fiberOpticCableType("fiberOpticCableType")
.maximumSupportedWeightLbs("maximumSupportedWeightLbs")
.opticalStandard("opticalStandard")
.powerConnector("powerConnector")
.powerDrawKva("powerDrawKva")
.powerFeedDrop("powerFeedDrop")
.powerPhase("powerPhase")
.uplinkCount("uplinkCount")
.uplinkGbps("uplinkGbps")
.build())
.shippingAddress(AddressProperty.builder()
.addressLine1("addressLine1")
.addressLine2("addressLine2")
.addressLine3("addressLine3")
.city("city")
.contactName("contactName")
.contactPhoneNumber("contactPhoneNumber")
.countryCode("countryCode")
.districtOrCounty("districtOrCounty")
.municipality("municipality")
.postalCode("postalCode")
.stateOrRegion("stateOrRegion")
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnSiteMixinPropsstatic final classAn implementation forCfnSiteMixinProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnSiteMixinProps.Builderbuilder()default Stringdefault StringgetName()default StringgetNotes()default ObjectReturns union: eitherIResolvableorCfnSitePropsMixin.AddressPropertydefault ObjectReturns union: eitherIResolvableorCfnSitePropsMixin.RackPhysicalPropertiesPropertydefault ObjectReturns union: eitherIResolvableorCfnSitePropsMixin.AddressPropertygetTags()Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
- See Also:
-
getName
- See Also:
-
getNotes
- See Also:
-
getOperatingAddress
Returns union: eitherIResolvableorCfnSitePropsMixin.AddressProperty- See Also:
-
getRackPhysicalProperties
Returns union: eitherIResolvableorCfnSitePropsMixin.RackPhysicalPropertiesProperty- See Also:
-
getShippingAddress
Returns union: eitherIResolvableorCfnSitePropsMixin.AddressProperty- See Also:
-
getTags
- See Also:
-
builder
- Returns:
- a
CfnSiteMixinProps.BuilderofCfnSiteMixinProps
-