pub struct GetInsightsRequest {
pub insight_arns: Option<Vec<String>>,
pub max_results: Option<i64>,
pub next_token: Option<String>,
}
Fields§
§insight_arns: Option<Vec<String>>
The ARNs of the insights to describe. If you do not provide any insight ARNs, then GetInsights
returns all of your custom insights. It does not return any managed insights.
max_results: Option<i64>
The maximum number of items to return in the response.
next_token: Option<String>
The token that is required for pagination. On your first call to the GetInsights
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 GetInsightsRequest
impl Clone for GetInsightsRequest
Source§fn clone(&self) -> GetInsightsRequest
fn clone(&self) -> GetInsightsRequest
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 GetInsightsRequest
impl Debug for GetInsightsRequest
Source§impl Default for GetInsightsRequest
impl Default for GetInsightsRequest
Source§fn default() -> GetInsightsRequest
fn default() -> GetInsightsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetInsightsRequest
impl PartialEq for GetInsightsRequest
Source§impl Serialize for GetInsightsRequest
impl Serialize for GetInsightsRequest
impl StructuralPartialEq for GetInsightsRequest
Auto Trait Implementations§
impl Freeze for GetInsightsRequest
impl RefUnwindSafe for GetInsightsRequest
impl Send for GetInsightsRequest
impl Sync for GetInsightsRequest
impl Unpin for GetInsightsRequest
impl UnwindSafe for GetInsightsRequest
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