Struct aws_sdk_codeguruprofiler::input::PostAgentProfileInput [−][src]
#[non_exhaustive]pub struct PostAgentProfileInput {
pub profiling_group_name: Option<String>,
pub agent_profile: Option<Blob>,
pub profile_token: Option<String>,
pub content_type: Option<String>,
}
Expand description
The structure representing the postAgentProfileRequest.
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.profiling_group_name: Option<String>
The name of the profiling group with the aggregated profile that receives the submitted profiling data.
agent_profile: Option<Blob>
The submitted profiling data.
profile_token: Option<String>
Amazon CodeGuru Profiler uses this universally unique identifier (UUID) to prevent the accidental submission of duplicate profiling data if there are failures and retries.
content_type: Option<String>
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.
Implementations
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<PostAgentProfile, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
self,
_config: &Config
) -> Result<Operation<PostAgentProfile, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<PostAgentProfile
>
Creates a new builder-style object to manufacture PostAgentProfileInput
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 PostAgentProfileInput
impl Send for PostAgentProfileInput
impl Sync for PostAgentProfileInput
impl Unpin for PostAgentProfileInput
impl UnwindSafe for PostAgentProfileInput
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