#[non_exhaustive]pub struct PreviewAgentsInput {
pub preview_agents_arn: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<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.preview_agents_arn: Option<String>The ARN of the assessment target whose agents you want to preview.
next_token: Option<String>You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the PreviewAgents action. Subsequent calls to the action fill nextToken in the request with the value of NextToken from the previous response to continue listing data.
max_results: Option<i32>You can use this parameter to indicate the maximum number of items you want in the response. The default value is 10. The maximum value is 500.
Implementations§
source§impl PreviewAgentsInput
impl PreviewAgentsInput
sourcepub fn preview_agents_arn(&self) -> Option<&str>
pub fn preview_agents_arn(&self) -> Option<&str>
The ARN of the assessment target whose agents you want to preview.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
You can use this parameter when paginating results. Set the value of this parameter to null on your first call to the PreviewAgents action. Subsequent calls to the action fill nextToken in the request with the value of NextToken from the previous response to continue listing data.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
You can use this parameter to indicate the maximum number of items you want in the response. The default value is 10. The maximum value is 500.
source§impl PreviewAgentsInput
impl PreviewAgentsInput
sourcepub fn builder() -> PreviewAgentsInputBuilder
pub fn builder() -> PreviewAgentsInputBuilder
Creates a new builder-style object to manufacture PreviewAgentsInput.
Trait Implementations§
source§impl Clone for PreviewAgentsInput
impl Clone for PreviewAgentsInput
source§fn clone(&self) -> PreviewAgentsInput
fn clone(&self) -> PreviewAgentsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for PreviewAgentsInput
impl Debug for PreviewAgentsInput
source§impl PartialEq for PreviewAgentsInput
impl PartialEq for PreviewAgentsInput
source§fn eq(&self, other: &PreviewAgentsInput) -> bool
fn eq(&self, other: &PreviewAgentsInput) -> bool
self and other values to be equal, and is used
by ==.