Show / Hide Table of Contents

Class GetZoneArgs

Inheritance
System.Object
InputArgs
InvokeArgs
GetZoneArgs
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.Route53
Assembly: Pulumi.Aws.dll
Syntax
public sealed class GetZoneArgs : InvokeArgs

Constructors

View Source

GetZoneArgs()

Declaration
public GetZoneArgs()

Properties

View Source

Name

The Hosted Zone name of the desired Hosted Zone.

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

PrivateZone

Used with name field to get a private Hosted Zone.

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

ResourceRecordSetCount

The number of Record Set in the Hosted Zone.

Declaration
public int? ResourceRecordSetCount { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
View Source

Tags

Used with name field. A map of tags, each pair of which must exactly match a pair on the desired Hosted Zone.

Declaration
public Dictionary<string, object> Tags { get; set; }
Property Value
Type Description
System.Collections.Generic.Dictionary<System.String, System.Object>
View Source

VpcId

Used with name field to get a private Hosted Zone associated with the vpc_id (in this case, private_zone is not mandatory).

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

ZoneId

The Hosted Zone id of the desired Hosted Zone.

Declaration
public string ZoneId { get; set; }
Property Value
Type Description
System.String
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.