Class GetZoneArgs
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.Route53
Assembly: Pulumi.Aws.dll
Syntax
public sealed class GetZoneArgs : InvokeArgs
Constructors
View SourceGetZoneArgs()
Declaration
public GetZoneArgs()
Properties
View SourceName
The Hosted Zone name of the desired Hosted Zone.
Declaration
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
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> |
ResourceRecordSetCount
The number of Record Set in the Hosted Zone.
Declaration
public int? ResourceRecordSetCount { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Int32> |
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> |
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 |
ZoneId
The Hosted Zone id of the desired Hosted Zone.
Declaration
public string ZoneId { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |