[][src]Trait rusoto_codeguruprofiler::CodeGuruProfiler

pub trait CodeGuruProfiler {
    fn configure_agent<'life0, 'async_trait>(
        &'life0 self,
        input: ConfigureAgentRequest
    ) -> Pin<Box<dyn Future<Output = Result<ConfigureAgentResponse, RusotoError<ConfigureAgentError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn create_profiling_group<'life0, 'async_trait>(
        &'life0 self,
        input: CreateProfilingGroupRequest
    ) -> Pin<Box<dyn Future<Output = Result<CreateProfilingGroupResponse, RusotoError<CreateProfilingGroupError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn delete_profiling_group<'life0, 'async_trait>(
        &'life0 self,
        input: DeleteProfilingGroupRequest
    ) -> Pin<Box<dyn Future<Output = Result<DeleteProfilingGroupResponse, RusotoError<DeleteProfilingGroupError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn describe_profiling_group<'life0, 'async_trait>(
        &'life0 self,
        input: DescribeProfilingGroupRequest
    ) -> Pin<Box<dyn Future<Output = Result<DescribeProfilingGroupResponse, RusotoError<DescribeProfilingGroupError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn get_profile<'life0, 'async_trait>(
        &'life0 self,
        input: GetProfileRequest
    ) -> Pin<Box<dyn Future<Output = Result<GetProfileResponse, RusotoError<GetProfileError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn list_profile_times<'life0, 'async_trait>(
        &'life0 self,
        input: ListProfileTimesRequest
    ) -> Pin<Box<dyn Future<Output = Result<ListProfileTimesResponse, RusotoError<ListProfileTimesError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn list_profiling_groups<'life0, 'async_trait>(
        &'life0 self,
        input: ListProfilingGroupsRequest
    ) -> Pin<Box<dyn Future<Output = Result<ListProfilingGroupsResponse, RusotoError<ListProfilingGroupsError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn post_agent_profile<'life0, 'async_trait>(
        &'life0 self,
        input: PostAgentProfileRequest
    ) -> Pin<Box<dyn Future<Output = Result<PostAgentProfileResponse, RusotoError<PostAgentProfileError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
;
fn update_profiling_group<'life0, 'async_trait>(
        &'life0 self,
        input: UpdateProfilingGroupRequest
    ) -> Pin<Box<dyn Future<Output = Result<UpdateProfilingGroupResponse, RusotoError<UpdateProfilingGroupError>>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
; }

Trait representing the capabilities of the Amazon CodeGuru Profiler API. Amazon CodeGuru Profiler clients implement this trait.

Required methods

fn configure_agent<'life0, 'async_trait>(
    &'life0 self,
    input: ConfigureAgentRequest
) -> Pin<Box<dyn Future<Output = Result<ConfigureAgentResponse, RusotoError<ConfigureAgentError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Provides the configuration to use for an agent of the profiling group.

fn create_profiling_group<'life0, 'async_trait>(
    &'life0 self,
    input: CreateProfilingGroupRequest
) -> Pin<Box<dyn Future<Output = Result<CreateProfilingGroupResponse, RusotoError<CreateProfilingGroupError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Create a profiling group.

fn delete_profiling_group<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteProfilingGroupRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteProfilingGroupResponse, RusotoError<DeleteProfilingGroupError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Delete a profiling group.

fn describe_profiling_group<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeProfilingGroupRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeProfilingGroupResponse, RusotoError<DescribeProfilingGroupError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Describe a profiling group.

fn get_profile<'life0, 'async_trait>(
    &'life0 self,
    input: GetProfileRequest
) -> Pin<Box<dyn Future<Output = Result<GetProfileResponse, RusotoError<GetProfileError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Get the aggregated profile of a profiling group for the specified time range. If the requested time range does not align with the available aggregated profiles, it will be expanded to attain alignment. If aggregated profiles are available only for part of the period requested, the profile is returned from the earliest available to the latest within the requested time range. For instance, if the requested time range is from 00:00 to 00:20 and the available profiles are from 00:15 to 00:25, then the returned profile will be from 00:15 to 00:20.

fn list_profile_times<'life0, 'async_trait>(
    &'life0 self,
    input: ListProfileTimesRequest
) -> Pin<Box<dyn Future<Output = Result<ListProfileTimesResponse, RusotoError<ListProfileTimesError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

List the start times of the available aggregated profiles of a profiling group for an aggregation period within the specified time range.

fn list_profiling_groups<'life0, 'async_trait>(
    &'life0 self,
    input: ListProfilingGroupsRequest
) -> Pin<Box<dyn Future<Output = Result<ListProfilingGroupsResponse, RusotoError<ListProfilingGroupsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

List profiling groups in the account.

fn post_agent_profile<'life0, 'async_trait>(
    &'life0 self,
    input: PostAgentProfileRequest
) -> Pin<Box<dyn Future<Output = Result<PostAgentProfileResponse, RusotoError<PostAgentProfileError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Submit profile collected by an agent belonging to a profiling group for aggregation.

fn update_profiling_group<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateProfilingGroupRequest
) -> Pin<Box<dyn Future<Output = Result<UpdateProfilingGroupResponse, RusotoError<UpdateProfilingGroupError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 

Update a profiling group.

Loading content...

Implementors

impl CodeGuruProfiler for CodeGuruProfilerClient[src]

fn configure_agent<'life0, 'async_trait>(
    &'life0 self,
    input: ConfigureAgentRequest
) -> Pin<Box<dyn Future<Output = Result<ConfigureAgentResponse, RusotoError<ConfigureAgentError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Provides the configuration to use for an agent of the profiling group.

fn create_profiling_group<'life0, 'async_trait>(
    &'life0 self,
    input: CreateProfilingGroupRequest
) -> Pin<Box<dyn Future<Output = Result<CreateProfilingGroupResponse, RusotoError<CreateProfilingGroupError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Create a profiling group.

fn delete_profiling_group<'life0, 'async_trait>(
    &'life0 self,
    input: DeleteProfilingGroupRequest
) -> Pin<Box<dyn Future<Output = Result<DeleteProfilingGroupResponse, RusotoError<DeleteProfilingGroupError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Delete a profiling group.

fn describe_profiling_group<'life0, 'async_trait>(
    &'life0 self,
    input: DescribeProfilingGroupRequest
) -> Pin<Box<dyn Future<Output = Result<DescribeProfilingGroupResponse, RusotoError<DescribeProfilingGroupError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Describe a profiling group.

fn get_profile<'life0, 'async_trait>(
    &'life0 self,
    input: GetProfileRequest
) -> Pin<Box<dyn Future<Output = Result<GetProfileResponse, RusotoError<GetProfileError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Get the aggregated profile of a profiling group for the specified time range. If the requested time range does not align with the available aggregated profiles, it will be expanded to attain alignment. If aggregated profiles are available only for part of the period requested, the profile is returned from the earliest available to the latest within the requested time range. For instance, if the requested time range is from 00:00 to 00:20 and the available profiles are from 00:15 to 00:25, then the returned profile will be from 00:15 to 00:20.

fn list_profile_times<'life0, 'async_trait>(
    &'life0 self,
    input: ListProfileTimesRequest
) -> Pin<Box<dyn Future<Output = Result<ListProfileTimesResponse, RusotoError<ListProfileTimesError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

List the start times of the available aggregated profiles of a profiling group for an aggregation period within the specified time range.

fn list_profiling_groups<'life0, 'async_trait>(
    &'life0 self,
    input: ListProfilingGroupsRequest
) -> Pin<Box<dyn Future<Output = Result<ListProfilingGroupsResponse, RusotoError<ListProfilingGroupsError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

List profiling groups in the account.

fn post_agent_profile<'life0, 'async_trait>(
    &'life0 self,
    input: PostAgentProfileRequest
) -> Pin<Box<dyn Future<Output = Result<PostAgentProfileResponse, RusotoError<PostAgentProfileError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Submit profile collected by an agent belonging to a profiling group for aggregation.

fn update_profiling_group<'life0, 'async_trait>(
    &'life0 self,
    input: UpdateProfilingGroupRequest
) -> Pin<Box<dyn Future<Output = Result<UpdateProfilingGroupResponse, RusotoError<UpdateProfilingGroupError>>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    Self: 'async_trait, 
[src]

Update a profiling group.

Loading content...