public static interface CreateFleetRequest.Builder extends AppStreamRequest.Builder, CopyableBuilder<CreateFleetRequest.Builder,CreateFleetRequest>
| Modifier and Type | Method and Description |
|---|---|
CreateFleetRequest.Builder |
computeCapacity(ComputeCapacity computeCapacity)
The desired capacity for the fleet.
|
default CreateFleetRequest.Builder |
computeCapacity(Consumer<ComputeCapacity.Builder> computeCapacity)
The desired capacity for the fleet.
|
CreateFleetRequest.Builder |
description(String description)
The description displayed to end users.
|
CreateFleetRequest.Builder |
disconnectTimeoutInSeconds(Integer disconnectTimeoutInSeconds)
The time after disconnection when a session is considered to have ended, in seconds.
|
CreateFleetRequest.Builder |
displayName(String displayName)
The fleet name displayed to end users.
|
default CreateFleetRequest.Builder |
domainJoinInfo(Consumer<DomainJoinInfo.Builder> domainJoinInfo)
The information needed for streaming instances to join a domain.
|
CreateFleetRequest.Builder |
domainJoinInfo(DomainJoinInfo domainJoinInfo)
The information needed for streaming instances to join a domain.
|
CreateFleetRequest.Builder |
enableDefaultInternetAccess(Boolean enableDefaultInternetAccess)
Enables or disables default internet access for the fleet.
|
CreateFleetRequest.Builder |
fleetType(FleetType fleetType)
Sets the value of the FleetType property for this object.
|
CreateFleetRequest.Builder |
fleetType(String fleetType)
Sets the value of the FleetType property for this object.
|
CreateFleetRequest.Builder |
imageName(String imageName)
The name of the image used by the fleet.
|
CreateFleetRequest.Builder |
instanceType(String instanceType)
The instance type to use when launching fleet instances.
|
CreateFleetRequest.Builder |
maxUserDurationInSeconds(Integer maxUserDurationInSeconds)
The maximum time that a streaming session can run, in seconds.
|
CreateFleetRequest.Builder |
name(String name)
A unique name for the fleet.
|
CreateFleetRequest.Builder |
requestOverrideConfig(AwsRequestOverrideConfig awsRequestOverrideConfig)
Add an optional request override configuration.
|
CreateFleetRequest.Builder |
requestOverrideConfig(Consumer<AwsRequestOverrideConfig.Builder> builderConsumer)
Add an optional request override configuration.
|
default CreateFleetRequest.Builder |
vpcConfig(Consumer<VpcConfig.Builder> vpcConfig)
The VPC configuration for the fleet.
|
CreateFleetRequest.Builder |
vpcConfig(VpcConfig vpcConfig)
The VPC configuration for the fleet.
|
buildrequestOverrideConfigcopyapply, buildCreateFleetRequest.Builder name(String name)
A unique name for the fleet.
name - A unique name for the fleet.CreateFleetRequest.Builder imageName(String imageName)
The name of the image used by the fleet.
imageName - The name of the image used by the fleet.CreateFleetRequest.Builder instanceType(String instanceType)
The instance type to use when launching fleet instances. The following instance types are available:
stream.standard.medium
stream.standard.large
stream.compute.large
stream.compute.xlarge
stream.compute.2xlarge
stream.compute.4xlarge
stream.compute.8xlarge
stream.memory.large
stream.memory.xlarge
stream.memory.2xlarge
stream.memory.4xlarge
stream.memory.8xlarge
stream.graphics-design.large
stream.graphics-design.xlarge
stream.graphics-design.2xlarge
stream.graphics-design.4xlarge
stream.graphics-desktop.2xlarge
stream.graphics-pro.4xlarge
stream.graphics-pro.8xlarge
stream.graphics-pro.16xlarge
instanceType - The instance type to use when launching fleet instances. The following instance types are
available:
stream.standard.medium
stream.standard.large
stream.compute.large
stream.compute.xlarge
stream.compute.2xlarge
stream.compute.4xlarge
stream.compute.8xlarge
stream.memory.large
stream.memory.xlarge
stream.memory.2xlarge
stream.memory.4xlarge
stream.memory.8xlarge
stream.graphics-design.large
stream.graphics-design.xlarge
stream.graphics-design.2xlarge
stream.graphics-design.4xlarge
stream.graphics-desktop.2xlarge
stream.graphics-pro.4xlarge
stream.graphics-pro.8xlarge
stream.graphics-pro.16xlarge
CreateFleetRequest.Builder fleetType(String fleetType)
CreateFleetRequest.Builder fleetType(FleetType fleetType)
CreateFleetRequest.Builder computeCapacity(ComputeCapacity computeCapacity)
The desired capacity for the fleet.
computeCapacity - The desired capacity for the fleet.default CreateFleetRequest.Builder computeCapacity(Consumer<ComputeCapacity.Builder> computeCapacity)
The desired capacity for the fleet.
This is a convenience that creates an instance of theComputeCapacity.Builder avoiding the need to
create one manually via ComputeCapacity.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its
result is passed to computeCapacity(ComputeCapacity).computeCapacity - a consumer that will call methods on ComputeCapacity.BuildercomputeCapacity(ComputeCapacity)CreateFleetRequest.Builder vpcConfig(VpcConfig vpcConfig)
The VPC configuration for the fleet.
vpcConfig - The VPC configuration for the fleet.default CreateFleetRequest.Builder vpcConfig(Consumer<VpcConfig.Builder> vpcConfig)
The VPC configuration for the fleet.
This is a convenience that creates an instance of theVpcConfig.Builder avoiding the need to create
one manually via VpcConfig.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its result
is passed to vpcConfig(VpcConfig).vpcConfig - a consumer that will call methods on VpcConfig.BuildervpcConfig(VpcConfig)CreateFleetRequest.Builder maxUserDurationInSeconds(Integer maxUserDurationInSeconds)
The maximum time that a streaming session can run, in seconds. Specify a value between 600 and 57600.
maxUserDurationInSeconds - The maximum time that a streaming session can run, in seconds. Specify a value between 600 and 57600.CreateFleetRequest.Builder disconnectTimeoutInSeconds(Integer disconnectTimeoutInSeconds)
The time after disconnection when a session is considered to have ended, in seconds. If a user who was disconnected reconnects within this time interval, the user is connected to their previous session. Specify a value between 60 and 57600.
disconnectTimeoutInSeconds - The time after disconnection when a session is considered to have ended, in seconds. If a user who was
disconnected reconnects within this time interval, the user is connected to their previous session.
Specify a value between 60 and 57600.CreateFleetRequest.Builder description(String description)
The description displayed to end users.
description - The description displayed to end users.CreateFleetRequest.Builder displayName(String displayName)
The fleet name displayed to end users.
displayName - The fleet name displayed to end users.CreateFleetRequest.Builder enableDefaultInternetAccess(Boolean enableDefaultInternetAccess)
Enables or disables default internet access for the fleet.
enableDefaultInternetAccess - Enables or disables default internet access for the fleet.CreateFleetRequest.Builder domainJoinInfo(DomainJoinInfo domainJoinInfo)
The information needed for streaming instances to join a domain.
domainJoinInfo - The information needed for streaming instances to join a domain.default CreateFleetRequest.Builder domainJoinInfo(Consumer<DomainJoinInfo.Builder> domainJoinInfo)
The information needed for streaming instances to join a domain.
This is a convenience that creates an instance of theDomainJoinInfo.Builder avoiding the need to
create one manually via DomainJoinInfo.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its
result is passed to domainJoinInfo(DomainJoinInfo).domainJoinInfo - a consumer that will call methods on DomainJoinInfo.BuilderdomainJoinInfo(DomainJoinInfo)CreateFleetRequest.Builder requestOverrideConfig(AwsRequestOverrideConfig awsRequestOverrideConfig)
AwsRequest.BuilderrequestOverrideConfig in interface AwsRequest.BuilderawsRequestOverrideConfig - The override configuration.CreateFleetRequest.Builder requestOverrideConfig(Consumer<AwsRequestOverrideConfig.Builder> builderConsumer)
AwsRequest.BuilderrequestOverrideConfig in interface AwsRequest.BuilderbuilderConsumer - A Consumer to which an empty AwsRequestOverrideConfig.Builder will be given.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.