[][src]Struct rusoto_codeguruprofiler::CreateProfilingGroupRequest

pub struct CreateProfilingGroupRequest {
    pub agent_orchestration_config: Option<AgentOrchestrationConfig>,
    pub client_token: String,
    pub compute_platform: Option<String>,
    pub profiling_group_name: String,
}

The structure representing the createProfiliingGroupRequest.

Fields

agent_orchestration_config: Option<AgentOrchestrationConfig>

Specifies whether profiling is enabled or disabled for the created profiling group.

client_token: String

Amazon CodeGuru Profiler uses this universally unique identifier (UUID) to prevent the accidental creation of duplicate profiling groups if there are failures and retries.

compute_platform: Option<String>

The compute platform of the profiling group. Use AWSLambda if your application runs on AWS Lambda. Use Default if your application runs on a compute platform that is not AWS Lambda, such an Amazon EC2 instance, an on-premises server, or a different platform. If not specified, Default is used.

profiling_group_name: String

The name of the profiling group to create.

Trait Implementations

impl Clone for CreateProfilingGroupRequest[src]

impl Debug for CreateProfilingGroupRequest[src]

impl Default for CreateProfilingGroupRequest[src]

impl PartialEq<CreateProfilingGroupRequest> for CreateProfilingGroupRequest[src]

impl Serialize for CreateProfilingGroupRequest[src]

impl StructuralPartialEq for CreateProfilingGroupRequest[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, 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> Sealed<T> for T where
    T: ?Sized

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.