Struct rusoto_cognito_idp::AnalyticsConfigurationType[][src]

pub struct AnalyticsConfigurationType {
    pub application_id: String,
    pub external_id: String,
    pub role_arn: String,
    pub user_data_shared: Option<bool>,
}

The Amazon Pinpoint analytics configuration for collecting metrics for a user pool.

Fields

The application ID for an Amazon Pinpoint application.

The external ID.

The ARN of an IAM role that authorizes Amazon Cognito to publish events to Amazon Pinpoint analytics.

If UserDataShared is true, Amazon Cognito will include user data in the events it publishes to Amazon Pinpoint analytics.

Trait Implementations

impl Default for AnalyticsConfigurationType
[src]

Returns the "default value" for a type. Read more

impl Debug for AnalyticsConfigurationType
[src]

Formats the value using the given formatter. Read more

impl Clone for AnalyticsConfigurationType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AnalyticsConfigurationType
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations