package awsappstream // The desired capacity for a fleet. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // computeCapacityProperty := &ComputeCapacityProperty{ // DesiredInstances: jsii.Number(123), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-computecapacity.html // type CfnFleet_ComputeCapacityProperty struct { // The desired number of streaming instances. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appstream-fleet-computecapacity.html#cfn-appstream-fleet-computecapacity-desiredinstances // DesiredInstances *float64 `field:"required" json:"desiredInstances" yaml:"desiredInstances"` }