Struct aws_sdk_securityhub::input::GetInsightsInput [−][src]
#[non_exhaustive]pub struct GetInsightsInput {
pub insight_arns: Option<Vec<String>>,
pub next_token: Option<String>,
pub max_results: i32,
}
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.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.
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.
max_results: i32
The maximum number of items to return in the response.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetInsights, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetInsights, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<GetInsights
>
Creates a new builder-style object to manufacture GetInsightsInput
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.
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.
The maximum number of items to return in the response.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for GetInsightsInput
impl Send for GetInsightsInput
impl Sync for GetInsightsInput
impl Unpin for GetInsightsInput
impl UnwindSafe for GetInsightsInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more