Show / Hide Table of Contents

Class GetVpcArgs

Inheritance
System.Object
InputArgs
InvokeArgs
GetVpcArgs
Inherited Members
InvokeArgs.Empty
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 sealed class GetVpcArgs : InvokeArgs

Constructors

View Source

GetVpcArgs()

Declaration
public GetVpcArgs()

Properties

View Source

CidrBlock

The cidr block of the desired VPC.

Declaration
public string CidrBlock { get; set; }
Property Value
Type Description
System.String
View Source

Default

Boolean constraint on whether the desired VPC is the default VPC for the region.

Declaration
public bool? Default { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>
View Source

DhcpOptionsId

The DHCP options id of the desired VPC.

Declaration
public string DhcpOptionsId { get; set; }
Property Value
Type Description
System.String
View Source

Filters

Custom filter block as described below.

Declaration
public List<GetVpcFilterArgs> Filters { get; set; }
Property Value
Type Description
System.Collections.Generic.List<GetVpcFilterArgs>
View Source

Id

The id of the specific VPC to retrieve.

Declaration
public string Id { get; set; }
Property Value
Type Description
System.String
View Source

State

The current state of the desired VPC. Can be either &quot;pending&quot; or &quot;available&quot;.

Declaration
public string State { get; set; }
Property Value
Type Description
System.String
View Source

Tags

A map of tags, each pair of which must exactly match a pair on the desired VPC.

Declaration
public Dictionary<string, object> Tags { get; set; }
Property Value
Type Description
System.Collections.Generic.Dictionary<System.String, System.Object>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.