Fleet Args
Provides an AppStream fleet.
Example Usage
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.appstream.Fleet;
import com.pulumi.aws.appstream.FleetArgs;
import com.pulumi.aws.appstream.inputs.FleetComputeCapacityArgs;
import com.pulumi.aws.appstream.inputs.FleetVpcConfigArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testFleet = new Fleet("testFleet", FleetArgs.builder()
.computeCapacity(FleetComputeCapacityArgs.builder()
.desiredInstances(1)
.build())
.description("test fleet")
.displayName("test-fleet")
.enableDefaultInternetAccess(false)
.fleetType("ON_DEMAND")
.idleDisconnectTimeoutInSeconds(60)
.imageName("Amazon-AppStream2-Sample-Image-02-04-2019")
.instanceType("stream.standard.large")
.maxUserDurationInSeconds(600)
.tags(Map.of("TagName", "tag-value"))
.vpcConfig(FleetVpcConfigArgs.builder()
.subnetIds("subnet-06e9b13400c225127")
.build())
.build());
}
}Import
aws_appstream_fleet can be imported using the id, e.g.,
$ pulumi import aws:appstream/fleet:Fleet example fleetNameExampleConstructors
Properties
Configuration block for the desired capacity of the fleet. See below.
Description to display.
Amount of time that a streaming session remains active after users disconnect.
Human-readable friendly name for the AppStream fleet.
Configuration block for the name of the directory and organizational unit (OU) to use to join the fleet to a Microsoft Active Directory domain. See below.
Enables or disables default internet access for the fleet.
ARN of the IAM role to apply to the fleet.
Amount of time that users can be idle (inactive) before they are disconnected from their streaming session and the disconnect_timeout_in_seconds time interval begins.
Instance type to use when launching fleet instances.
Maximum amount of time that a streaming session can remain active, in seconds.
AppStream 2.0 view that is displayed to your users when they stream from the fleet. When APP is specified, only the windows of applications opened by users display. When DESKTOP is specified, the standard desktop that is provided by the operating system displays. If not specified, defaults to APP.
Configuration block for the VPC configuration for the image builder. See below.