Show / Hide Table of Contents

Class CfnMetricAttributionPropsMixin.MetricsOutputConfigProperty

The output configuration details for the metric attribution.

Inheritance
object
CfnMetricAttributionPropsMixin.MetricsOutputConfigProperty
Implements
CfnMetricAttributionPropsMixin.IMetricsOutputConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Personalize
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnMetricAttributionPropsMixin.MetricsOutputConfigProperty : CfnMetricAttributionPropsMixin.IMetricsOutputConfigProperty
Syntax (vb)
Public Class CfnMetricAttributionPropsMixin.MetricsOutputConfigProperty Implements CfnMetricAttributionPropsMixin.IMetricsOutputConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-personalize-metricattribution-metricsoutputconfig.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.Personalize;

             var metricsOutputConfigProperty = new MetricsOutputConfigProperty {
                 RoleArn = "roleArn",
                 S3DataDestination = new S3DataDestinationProperty {
                     KmsKeyArn = "kmsKeyArn",
                     Path = "path"
                 }
             };

Synopsis

Constructors

MetricsOutputConfigProperty()

The output configuration details for the metric attribution.

Properties

RoleArn

The ARN of the IAM role for the metric attribution.

S3DataDestination

The configuration details of an Amazon S3 output bucket.

Constructors

MetricsOutputConfigProperty()

The output configuration details for the metric attribution.

public MetricsOutputConfigProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-personalize-metricattribution-metricsoutputconfig.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.Personalize;

             var metricsOutputConfigProperty = new MetricsOutputConfigProperty {
                 RoleArn = "roleArn",
                 S3DataDestination = new S3DataDestinationProperty {
                     KmsKeyArn = "kmsKeyArn",
                     Path = "path"
                 }
             };

Properties

RoleArn

The ARN of the IAM role for the metric attribution.

public string? RoleArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-personalize-metricattribution-metricsoutputconfig.html#cfn-personalize-metricattribution-metricsoutputconfig-rolearn

S3DataDestination

The configuration details of an Amazon S3 output bucket.

public object? S3DataDestination { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-personalize-metricattribution-metricsoutputconfig.html#cfn-personalize-metricattribution-metricsoutputconfig-s3datadestination

Type union: either IResolvable or CfnMetricAttributionPropsMixin.IS3DataDestinationProperty

Implements

CfnMetricAttributionPropsMixin.IMetricsOutputConfigProperty
Back to top Generated by DocFX