pub struct ConfigureAgentRequest {
pub fleet_instance_id: Option<String>,
pub metadata: Option<HashMap<String, String>>,
pub profiling_group_name: String,
}Expand description
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: StringThe name of the profiling group for which the configured agent is collecting profiling data.
Trait Implementations§
Source§impl Clone for ConfigureAgentRequest
impl Clone for ConfigureAgentRequest
Source§fn clone(&self) -> ConfigureAgentRequest
fn clone(&self) -> ConfigureAgentRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more