#[non_exhaustive]pub struct CreatePublicIpv4PoolInput {
pub dry_run: Option<bool>,
pub tag_specifications: Option<Vec<TagSpecification>>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.dry_run: Option<bool>
A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation
. Otherwise, it is UnauthorizedOperation
.
tag_specifications: Option<Vec<TagSpecification>>
The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner
and the value TeamA
, specify tag:Owner
for the filter name and TeamA
for the filter value.
Implementations§
source§impl CreatePublicIpv4PoolInput
impl CreatePublicIpv4PoolInput
sourcepub fn dry_run(&self) -> Option<bool>
pub fn dry_run(&self) -> Option<bool>
A check for whether you have the required permissions for the action without actually making the request and provides an error response. If you have the required permissions, the error response is DryRunOperation
. Otherwise, it is UnauthorizedOperation
.
sourcepub fn tag_specifications(&self) -> Option<&[TagSpecification]>
pub fn tag_specifications(&self) -> Option<&[TagSpecification]>
The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner
and the value TeamA
, specify tag:Owner
for the filter name and TeamA
for the filter value.
source§impl CreatePublicIpv4PoolInput
impl CreatePublicIpv4PoolInput
sourcepub fn builder() -> CreatePublicIpv4PoolInputBuilder
pub fn builder() -> CreatePublicIpv4PoolInputBuilder
Creates a new builder-style object to manufacture CreatePublicIpv4PoolInput
.
Trait Implementations§
source§impl Clone for CreatePublicIpv4PoolInput
impl Clone for CreatePublicIpv4PoolInput
source§fn clone(&self) -> CreatePublicIpv4PoolInput
fn clone(&self) -> CreatePublicIpv4PoolInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreatePublicIpv4PoolInput
impl Debug for CreatePublicIpv4PoolInput
source§impl PartialEq<CreatePublicIpv4PoolInput> for CreatePublicIpv4PoolInput
impl PartialEq<CreatePublicIpv4PoolInput> for CreatePublicIpv4PoolInput
source§fn eq(&self, other: &CreatePublicIpv4PoolInput) -> bool
fn eq(&self, other: &CreatePublicIpv4PoolInput) -> bool
self
and other
values to be equal, and is used
by ==
.