Show / Hide Table of Contents

Class CfnJob.StatisticOverrideProperty

Override of a particular evaluation for a profile job.

Inheritance
object
CfnJob.StatisticOverrideProperty
Implements
CfnJob.IStatisticOverrideProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.DataBrew
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnJob.StatisticOverrideProperty : CfnJob.IStatisticOverrideProperty
Syntax (vb)
Public Class CfnJob.StatisticOverrideProperty Implements CfnJob.IStatisticOverrideProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-job-statisticoverride.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.AWS.DataBrew;

             var statisticOverrideProperty = new StatisticOverrideProperty {
                 Parameters = new Dictionary<string, string> {
                     { "parametersKey", "parameters" }
                 },
                 Statistic = "statistic"
             };

Synopsis

Constructors

StatisticOverrideProperty()

Override of a particular evaluation for a profile job.

Properties

Parameters

A map that includes overrides of an evaluation’s parameters.

Statistic

The name of an evaluation.

Constructors

StatisticOverrideProperty()

Override of a particular evaluation for a profile job.

public StatisticOverrideProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-job-statisticoverride.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.AWS.DataBrew;

             var statisticOverrideProperty = new StatisticOverrideProperty {
                 Parameters = new Dictionary<string, string> {
                     { "parametersKey", "parameters" }
                 },
                 Statistic = "statistic"
             };

Properties

Parameters

A map that includes overrides of an evaluation’s parameters.

public object Parameters { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-job-statisticoverride.html#cfn-databrew-job-statisticoverride-parameters

Statistic

The name of an evaluation.

public string Statistic { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-databrew-job-statisticoverride.html#cfn-databrew-job-statisticoverride-statistic

Implements

CfnJob.IStatisticOverrideProperty
Back to top Generated by DocFX