Interface CfnSpotFleetPropsMixin.SpotPlacementProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSpotFleetPropsMixin.SpotPlacementProperty.Jsii$Proxy
Enclosing class:
CfnSpotFleetPropsMixin

@Stability(Stable) public static interface CfnSpotFleetPropsMixin.SpotPlacementProperty extends software.amazon.jsii.JsiiSerializable
Describes Spot Instance placement.

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.ec2.*;
 SpotPlacementProperty spotPlacementProperty = SpotPlacementProperty.builder()
         .availabilityZone("availabilityZone")
         .availabilityZoneId("availabilityZoneId")
         .groupName("groupName")
         .tenancy("tenancy")
         .build();
 

See Also: