[][src]Struct rusoto_codeguruprofiler::ConfigureAgentRequest

pub struct ConfigureAgentRequest {
    pub fleet_instance_id: Option<String>,
    pub metadata: Option<HashMap<String, String>>,
    pub profiling_group_name: String,
}

The structure representing the configureAgentRequest.

Fields

fleet_instance_id: Option<String>

A universally unique identifier (UUID) for a profiling instance. For example, if the profiling instance is an Amazon EC2 instance, it is the instance ID. If it is an AWS Fargate container, it is the container's task ID.

metadata: Option<HashMap<String, String>>

Metadata captured about the compute platform the agent is running on. It includes information about sampling and reporting. The valid fields are:

  • COMPUTEPLATFORM - The compute platform on which the agent is running

  • AGENTID - The ID for an agent instance.

  • AWSREQUESTID - The AWS request ID of a Lambda invocation.

  • EXECUTIONENVIRONMENT - The execution environment a Lambda function is running on.

  • LAMBDAFUNCTIONARN - The Amazon Resource Name (ARN) that is used to invoke a Lambda function.

  • LAMBDAMEMORYLIMITINMB - The memory allocated to a Lambda function.

  • LAMBDAREMAININGTIMEINMILLISECONDS - The time in milliseconds before execution of a Lambda function times out.

  • LAMBDATIMEGAPBETWEENINVOKESINMILLISECONDS - The time in milliseconds between two invocations of a Lambda function.

  • LAMBDAPREVIOUSEXECUTIONTIMEINMILLISECONDS - The time in milliseconds for the previous Lambda invocation.

profiling_group_name: String

The name of the profiling group for which the configured agent is collecting profiling data.

Trait Implementations

impl Clone for ConfigureAgentRequest[src]

impl Debug for ConfigureAgentRequest[src]

impl Default for ConfigureAgentRequest[src]

impl PartialEq<ConfigureAgentRequest> for ConfigureAgentRequest[src]

impl Serialize for ConfigureAgentRequest[src]

impl StructuralPartialEq for ConfigureAgentRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.