[][src]Struct rusoto_codeguruprofiler::CodeGuruProfilerClient

pub struct CodeGuruProfilerClient { /* fields omitted */ }

A client for the Amazon CodeGuru Profiler API.

Methods

impl CodeGuruProfilerClient[src]

pub fn new(region: Region) -> CodeGuruProfilerClient[src]

Creates a client backed by the default tokio event loop.

The client will use the default credentials provider and tls client.

pub fn new_with<P, D>(
    request_dispatcher: D,
    credentials_provider: P,
    region: Region
) -> CodeGuruProfilerClient where
    P: ProvideAwsCredentials + Send + Sync + 'static,
    D: DispatchSignedRequest + Send + Sync + 'static, 
[src]

pub fn new_with_client(client: Client, region: Region) -> CodeGuruProfilerClient[src]

Trait Implementations

impl Clone for CodeGuruProfilerClient[src]

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.

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, 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.