Struct aws_sdk_ec2::operation::describe_instance_connect_endpoints::DescribeInstanceConnectEndpointsInput
source · #[non_exhaustive]pub struct DescribeInstanceConnectEndpointsInput {
pub dry_run: Option<bool>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
pub filters: Option<Vec<Filter>>,
pub instance_connect_endpoint_ids: Option<Vec<String>>,
}
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>
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
.
max_results: Option<i32>
The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.
next_token: Option<String>
The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.
filters: Option<Vec<Filter>>
One or more filters.
-
instance-connect-endpoint-id
- The ID of the EC2 Instance Connect Endpoint. -
state
- The state of the EC2 Instance Connect Endpoint (create-in-progress
|create-complete
|create-failed
|delete-in-progress
|delete-complete
|delete-failed
). -
subnet-id
- The ID of the subnet in which the EC2 Instance Connect Endpoint was created. -
tag
:- 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 valueTeamA
, specifytag:Owner
for the filter name andTeamA
for 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. -
tag-value
- The value of a tag assigned to the resource. Use this filter to find all resources that have a tag with a specific value, regardless of tag key. -
vpc-id
- The ID of the VPC in which the EC2 Instance Connect Endpoint was created.
instance_connect_endpoint_ids: Option<Vec<String>>
One or more EC2 Instance Connect Endpoint IDs.
Implementations§
source§impl DescribeInstanceConnectEndpointsInput
impl DescribeInstanceConnectEndpointsInput
sourcepub fn dry_run(&self) -> Option<bool>
pub fn dry_run(&self) -> 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
.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of items to return for this request. To get the next page of items, make another request with the token returned in the output. For more information, see Pagination.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token returned from a previous paginated request. Pagination continues from the end of the items returned by the previous request.
sourcepub fn filters(&self) -> Option<&[Filter]>
pub fn filters(&self) -> Option<&[Filter]>
One or more filters.
-
instance-connect-endpoint-id
- The ID of the EC2 Instance Connect Endpoint. -
state
- The state of the EC2 Instance Connect Endpoint (create-in-progress
|create-complete
|create-failed
|delete-in-progress
|delete-complete
|delete-failed
). -
subnet-id
- The ID of the subnet in which the EC2 Instance Connect Endpoint was created. -
tag
:- 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 valueTeamA
, specifytag:Owner
for the filter name andTeamA
for 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. -
tag-value
- The value of a tag assigned to the resource. Use this filter to find all resources that have a tag with a specific value, regardless of tag key. -
vpc-id
- The ID of the VPC in which the EC2 Instance Connect Endpoint was created.
sourcepub fn instance_connect_endpoint_ids(&self) -> Option<&[String]>
pub fn instance_connect_endpoint_ids(&self) -> Option<&[String]>
One or more EC2 Instance Connect Endpoint IDs.
source§impl DescribeInstanceConnectEndpointsInput
impl DescribeInstanceConnectEndpointsInput
sourcepub fn builder() -> DescribeInstanceConnectEndpointsInputBuilder
pub fn builder() -> DescribeInstanceConnectEndpointsInputBuilder
Creates a new builder-style object to manufacture DescribeInstanceConnectEndpointsInput
.
Trait Implementations§
source§impl Clone for DescribeInstanceConnectEndpointsInput
impl Clone for DescribeInstanceConnectEndpointsInput
source§fn clone(&self) -> DescribeInstanceConnectEndpointsInput
fn clone(&self) -> DescribeInstanceConnectEndpointsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<DescribeInstanceConnectEndpointsInput> for DescribeInstanceConnectEndpointsInput
impl PartialEq<DescribeInstanceConnectEndpointsInput> for DescribeInstanceConnectEndpointsInput
source§fn eq(&self, other: &DescribeInstanceConnectEndpointsInput) -> bool
fn eq(&self, other: &DescribeInstanceConnectEndpointsInput) -> bool
self
and other
values to be equal, and is used
by ==
.