Show / Hide Table of Contents

Class GetLaunchConfiguration

Inheritance
System.Object
GetLaunchConfiguration
Inherited Members
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.Ec2
Assembly: Pulumi.Aws.dll
Syntax
public static class GetLaunchConfiguration

Methods

View Source

InvokeAsync(GetLaunchConfigurationArgs, InvokeOptions)

Provides information about a Launch Configuration.

{{% examples %}}

Example Usage

{{% example %}}

using Pulumi;
using Aws = Pulumi.Aws;

class MyStack : Stack
{
public MyStack()
{
    var ubuntu = Output.Create(Aws.Ec2.GetLaunchConfiguration.InvokeAsync(new Aws.Ec2.GetLaunchConfigurationArgs
    {
        Name = "test-launch-config",
    }));
}

}

{{% /example %}} {{% /examples %}}

Declaration
public static Task<GetLaunchConfigurationResult> InvokeAsync(GetLaunchConfigurationArgs args, InvokeOptions options = null)
Parameters
Type Name Description
GetLaunchConfigurationArgs args
InvokeOptions options
Returns
Type Description
System.Threading.Tasks.Task<GetLaunchConfigurationResult>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.