describeSpotFleetInstances
inline suspend fun Ec2Client.describeSpotFleetInstances(crossinline block: DescribeSpotFleetInstancesRequest.Builder.() -> Unit): DescribeSpotFleetInstancesResponse
Describes the running instances for the specified Spot Fleet.
Samples
fun main() {
//sampleStart
// This example lists the Spot Instances associated with the specified Spot fleet.
val resp = ec2Client.describeSpotFleetInstances {
spotFleetRequestId = "sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE"
}
//sampleEnd
}