FleetArgs

data class FleetArgs(val auditStreamArn: Output<String>? = null, val deviceCaCertificate: Output<String>? = null, val displayName: Output<String>? = null, val identityProvider: Output<FleetIdentityProviderArgs>? = null, val name: Output<String>? = null, val network: Output<FleetNetworkArgs>? = null, val optimizeForEndUserLocation: Output<Boolean>? = null) : ConvertibleToJava<FleetArgs>

Example Usage

Basic usage:

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.worklink.Fleet;
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 example = new Fleet("example");
}
}

Import

WorkLink can be imported using the ARN, e.g.,

$ pulumi import aws:worklink/fleet:Fleet test arn:aws:worklink::123456789012:fleet/example

Constructors

Link copied to clipboard
constructor(auditStreamArn: Output<String>? = null, deviceCaCertificate: Output<String>? = null, displayName: Output<String>? = null, identityProvider: Output<FleetIdentityProviderArgs>? = null, name: Output<String>? = null, network: Output<FleetNetworkArgs>? = null, optimizeForEndUserLocation: Output<Boolean>? = null)

Properties

Link copied to clipboard
val auditStreamArn: Output<String>? = null

The ARN of the Amazon Kinesis data stream that receives the audit events. Kinesis data stream name must begin with "AmazonWorkLink-".

Link copied to clipboard
val deviceCaCertificate: Output<String>? = null

The certificate chain, including intermediate certificates and the root certificate authority certificate used to issue device certificates.

Link copied to clipboard
val displayName: Output<String>? = null

The name of the fleet.

Link copied to clipboard

Provide this to allow manage the identity provider configuration for the fleet. Fields documented below.

Link copied to clipboard
val name: Output<String>? = null

A region-unique name for the AMI.

Link copied to clipboard
val network: Output<FleetNetworkArgs>? = null

Provide this to allow manage the company network configuration for the fleet. Fields documented below.

Link copied to clipboard
val optimizeForEndUserLocation: Output<Boolean>? = null

The option to optimize for better performance by routing traffic through the closest AWS Region to users, which may be outside of your home Region. Defaults to true. network requires the following:

Functions

Link copied to clipboard
open override fun toJava(): FleetArgs