#[non_exhaustive]pub struct PostAgentProfileInput { /* private fields */ }
Expand description
The structure representing the postAgentProfileRequest.
Implementations§
source§impl PostAgentProfileInput
impl PostAgentProfileInput
sourcepub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<PostAgentProfile, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<PostAgentProfile, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<PostAgentProfile
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PostAgentProfileInput
.
source§impl PostAgentProfileInput
impl PostAgentProfileInput
sourcepub fn profiling_group_name(&self) -> Option<&str>
pub fn profiling_group_name(&self) -> Option<&str>
The name of the profiling group with the aggregated profile that receives the submitted profiling data.
sourcepub fn agent_profile(&self) -> Option<&Blob>
pub fn agent_profile(&self) -> Option<&Blob>
The submitted profiling data.
sourcepub fn profile_token(&self) -> Option<&str>
pub fn profile_token(&self) -> Option<&str>
Amazon CodeGuru Profiler uses this universally unique identifier (UUID) to prevent the accidental submission of duplicate profiling data if there are failures and retries.
sourcepub fn content_type(&self) -> Option<&str>
pub fn content_type(&self) -> Option<&str>
The format of the submitted profiling data. The format maps to the Accept
and Content-Type
headers of the HTTP request. You can specify one of the following: or the default .
-
application/json
— standard JSON format -
application/x-amzn-ion
— the Amazon Ion data format. For more information, see Amazon Ion.
Trait Implementations§
source§impl Clone for PostAgentProfileInput
impl Clone for PostAgentProfileInput
source§fn clone(&self) -> PostAgentProfileInput
fn clone(&self) -> PostAgentProfileInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PostAgentProfileInput
impl Debug for PostAgentProfileInput
source§impl PartialEq<PostAgentProfileInput> for PostAgentProfileInput
impl PartialEq<PostAgentProfileInput> for PostAgentProfileInput
source§fn eq(&self, other: &PostAgentProfileInput) -> bool
fn eq(&self, other: &PostAgentProfileInput) -> bool
self
and other
values to be equal, and is used
by ==
.