pub struct DescribeActionTargetsRequest {
pub action_target_arns: Option<Vec<String>>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§action_target_arns: Option<Vec<String>>
A list of custom action target ARNs for the custom action targets to retrieve.
max_results: Option<i64>
The maximum number of results to return.
next_token: Option<String>
The token that is required for pagination. On your first call to the DescribeActionTargets
operation, set the value of this parameter to NULL
.
For subsequent calls to the operation, to continue listing data, set the value of this parameter to the value returned from the previous response.
Trait Implementations§
Source§impl Clone for DescribeActionTargetsRequest
impl Clone for DescribeActionTargetsRequest
Source§fn clone(&self) -> DescribeActionTargetsRequest
fn clone(&self) -> DescribeActionTargetsRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DescribeActionTargetsRequest
impl Debug for DescribeActionTargetsRequest
Source§impl Default for DescribeActionTargetsRequest
impl Default for DescribeActionTargetsRequest
Source§fn default() -> DescribeActionTargetsRequest
fn default() -> DescribeActionTargetsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DescribeActionTargetsRequest
impl PartialEq for DescribeActionTargetsRequest
Source§fn eq(&self, other: &DescribeActionTargetsRequest) -> bool
fn eq(&self, other: &DescribeActionTargetsRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeActionTargetsRequest
Auto Trait Implementations§
impl Freeze for DescribeActionTargetsRequest
impl RefUnwindSafe for DescribeActionTargetsRequest
impl Send for DescribeActionTargetsRequest
impl Sync for DescribeActionTargetsRequest
impl Unpin for DescribeActionTargetsRequest
impl UnwindSafe for DescribeActionTargetsRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more