Show / Hide Table of Contents

Class Fleet

Example Usage

using Pulumi;
using Aws = Pulumi.Aws;

class MyStack : Stack
{
public MyStack()
{
    var example = new Aws.WorkLink.Fleet("example", new Aws.WorkLink.FleetArgs
    {
    });
}

}
Inheritance
System.Object
Resource
CustomResource
Fleet
Inherited Members
CustomResource.Id
Resource.GetResourceType()
Resource.GetResourceName()
Resource.Urn
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.WorkLink
Assembly: Pulumi.Aws.dll
Syntax
public class Fleet : CustomResource

Constructors

View Source

Fleet(String, FleetArgs, CustomResourceOptions)

Create a Fleet resource with the given unique name, arguments, and options.

Declaration
public Fleet(string name, FleetArgs args = null, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resource

FleetArgs args

The arguments used to populate this resource's properties

CustomResourceOptions options

A bag of options that control this resource's behavior

Properties

View Source

Arn

The ARN of the created WorkLink Fleet.

Declaration
public Output<string> Arn { get; }
Property Value
Type Description
Output<System.String>
View Source

AuditStreamArn

The ARN of the Amazon Kinesis data stream that receives the audit events.

Declaration
public Output<string> AuditStreamArn { get; }
Property Value
Type Description
Output<System.String>
View Source

CompanyCode

The identifier used by users to sign in to the Amazon WorkLink app.

Declaration
public Output<string> CompanyCode { get; }
Property Value
Type Description
Output<System.String>
View Source

CreatedTime

The time that the fleet was created.

Declaration
public Output<string> CreatedTime { get; }
Property Value
Type Description
Output<System.String>
View Source

DeviceCaCertificate

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

Declaration
public Output<string> DeviceCaCertificate { get; }
Property Value
Type Description
Output<System.String>
View Source

DisplayName

The name of the fleet.

Declaration
public Output<string> DisplayName { get; }
Property Value
Type Description
Output<System.String>
View Source

IdentityProvider

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

Declaration
public Output<FleetIdentityProvider> IdentityProvider { get; }
Property Value
Type Description
Output<FleetIdentityProvider>
View Source

LastUpdatedTime

The time that the fleet was last updated.

Declaration
public Output<string> LastUpdatedTime { get; }
Property Value
Type Description
Output<System.String>
View Source

Name

A region-unique name for the AMI.

Declaration
public Output<string> Name { get; }
Property Value
Type Description
Output<System.String>
View Source

Network

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

Declaration
public Output<FleetNetwork> Network { get; }
Property Value
Type Description
Output<FleetNetwork>
View Source

OptimizeForEndUserLocation

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.

Declaration
public Output<bool?> OptimizeForEndUserLocation { get; }
Property Value
Type Description
Output<System.Nullable<System.Boolean>>

Methods

View Source

Get(String, Input<String>, FleetState, CustomResourceOptions)

Get an existing Fleet resource's state with the given name, ID, and optional extra properties used to qualify the lookup.

Declaration
public static Fleet Get(string name, Input<string> id, FleetState state = null, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resulting resource.

Input<System.String> id

The unique provider ID of the resource to lookup.

FleetState state

Any extra arguments used during the lookup.

CustomResourceOptions options

A bag of options that control this resource's behavior

Returns
Type Description
Fleet
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.