Class CfnJob.StatisticOverrideProperty
Override of a particular evaluation for a profile job.
Inheritance
System.Object
CfnJob.StatisticOverrideProperty
Implements
Namespace: Amazon.CDK.AWS.DataBrew
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class StatisticOverrideProperty : Object, CfnJob.IStatisticOverrideProperty
Syntax (vb)
Public Class StatisticOverrideProperty
Inherits Object
Implements CfnJob.IStatisticOverrideProperty
Remarks
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() |
Properties
Parameters | A map that includes overrides of an evaluation’s parameters. |
Statistic | The name of an evaluation. |
Constructors
StatisticOverrideProperty()
public StatisticOverrideProperty()
Properties
Parameters
A map that includes overrides of an evaluation’s parameters.
public object Parameters { get; set; }
Property Value
System.Object
Remarks
Statistic
The name of an evaluation.
public string Statistic { get; set; }
Property Value
System.String