pub struct DescribeVpcClassicLinkRequest {
pub dry_run: Option<bool>,
pub filters: Option<Vec<Filter>>,
pub vpc_ids: Option<Vec<String>>,
}Fields§
§dry_run: Option<bool>Checks 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.
filters: Option<Vec<Filter>>One or more filters.
-
is-classic-link-enabled- Whether the VPC is enabled for ClassicLink (true|false). -
tag:<key> - 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 keyOwnerand the valueTeamA, specifytag:Ownerfor the filter name andTeamAfor the filter value. -
tag-key- The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.
vpc_ids: Option<Vec<String>>One or more VPCs for which you want to describe the ClassicLink status.
Trait Implementations§
Source§impl Clone for DescribeVpcClassicLinkRequest
impl Clone for DescribeVpcClassicLinkRequest
Source§fn clone(&self) -> DescribeVpcClassicLinkRequest
fn clone(&self) -> DescribeVpcClassicLinkRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for DescribeVpcClassicLinkRequest
impl Default for DescribeVpcClassicLinkRequest
Source§fn default() -> DescribeVpcClassicLinkRequest
fn default() -> DescribeVpcClassicLinkRequest
Source§impl PartialEq for DescribeVpcClassicLinkRequest
impl PartialEq for DescribeVpcClassicLinkRequest
Source§fn eq(&self, other: &DescribeVpcClassicLinkRequest) -> bool
fn eq(&self, other: &DescribeVpcClassicLinkRequest) -> bool
self and other values to be equal, and is used by ==.