[−][src]Struct rusoto_route53::ListResourceRecordSetsRequest
A request for the resource record sets that are associated with a specified hosted zone.
Fields
hosted_zone_id: String
The ID of the hosted zone that contains the resource record sets that you want to list.
max_items: Option<String>
(Optional) The maximum number of resource records sets to include in the response body for this request. If the response includes more than maxitems
resource record sets, the value of the IsTruncated
element in the response is true
, and the values of the NextRecordName
and NextRecordType
elements in the response identify the first resource record set in the next group of maxitems
resource record sets.
start_record_identifier: Option<String>
Weighted resource record sets only: If results were truncated for a given DNS name and type, specify the value of NextRecordIdentifier
from the previous response to get the next resource record set that has the current DNS name and type.
start_record_name: Option<String>
The first name in the lexicographic ordering of resource record sets that you want to list.
start_record_type: Option<String>
The type of resource record set to begin the record listing from.
Valid values for basic resource record sets: A
| AAAA
| CAA
| CNAME
| MX
| NAPTR
| NS
| PTR
| SOA
| SPF
| SRV
| TXT
Values for weighted, latency, geolocation, and failover resource record sets: A
| AAAA
| CAA
| CNAME
| MX
| NAPTR
| PTR
| SPF
| SRV
| TXT
Values for alias resource record sets:
-
API Gateway custom regional API or edge-optimized API: A
-
CloudFront distribution: A or AAAA
-
Elastic Beanstalk environment that has a regionalized subdomain: A
-
Elastic Load Balancing load balancer: A | AAAA
-
Amazon S3 bucket: A
-
Amazon VPC interface VPC endpoint: A
-
Another resource record set in this hosted zone: The type of the resource record set that the alias references.
Constraint: Specifying type
without specifying name
returns an InvalidInput
error.
Trait Implementations
impl PartialEq<ListResourceRecordSetsRequest> for ListResourceRecordSetsRequest
[src]
fn eq(&self, other: &ListResourceRecordSetsRequest) -> bool
[src]
fn ne(&self, other: &ListResourceRecordSetsRequest) -> bool
[src]
impl Default for ListResourceRecordSetsRequest
[src]
impl Clone for ListResourceRecordSetsRequest
[src]
fn clone(&self) -> ListResourceRecordSetsRequest
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for ListResourceRecordSetsRequest
[src]
Auto Trait Implementations
impl Send for ListResourceRecordSetsRequest
impl Sync for ListResourceRecordSetsRequest
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self