Interface CfnSpotFleet.SpotPlacementProperty

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

@Stability(Stable) public static interface CfnSpotFleet.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.services.ec2.*;
 SpotPlacementProperty spotPlacementProperty = SpotPlacementProperty.builder()
         .availabilityZone("availabilityZone")
         .groupName("groupName")
         .tenancy("tenancy")
         .build();
 

See Also: