#[non_exhaustive]pub struct CreateMetricAttributionInput { /* private fields */ }
Implementations§
source§impl CreateMetricAttributionInput
impl CreateMetricAttributionInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateMetricAttribution, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateMetricAttribution, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateMetricAttribution
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateMetricAttributionInput
.
source§impl CreateMetricAttributionInput
impl CreateMetricAttributionInput
sourcepub fn dataset_group_arn(&self) -> Option<&str>
pub fn dataset_group_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the destination dataset group for the metric attribution.
sourcepub fn metrics(&self) -> Option<&[MetricAttribute]>
pub fn metrics(&self) -> Option<&[MetricAttribute]>
A list of metric attributes for the metric attribution. Each metric attribute specifies an event type to track and a function. Available functions are SUM()
or SAMPLECOUNT()
. For SUM() functions, provide the dataset type (either Interactions or Items) and column to sum as a parameter. For example SUM(Items.PRICE).
sourcepub fn metrics_output_config(&self) -> Option<&MetricAttributionOutput>
pub fn metrics_output_config(&self) -> Option<&MetricAttributionOutput>
The output configuration details for the metric attribution.
Trait Implementations§
source§impl Clone for CreateMetricAttributionInput
impl Clone for CreateMetricAttributionInput
source§fn clone(&self) -> CreateMetricAttributionInput
fn clone(&self) -> CreateMetricAttributionInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CreateMetricAttributionInput
impl Debug for CreateMetricAttributionInput
source§impl PartialEq<CreateMetricAttributionInput> for CreateMetricAttributionInput
impl PartialEq<CreateMetricAttributionInput> for CreateMetricAttributionInput
source§fn eq(&self, other: &CreateMetricAttributionInput) -> bool
fn eq(&self, other: &CreateMetricAttributionInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.