Class CfnDatasetGroup
Creates a dataset group, which holds a collection of related datasets.
Inherited Members
Namespace: Amazon.CDK.AWS.Forecast
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDatasetGroup : CfnResource, IInspectable, ITaggable
Syntax (vb)
Public Class CfnDatasetGroup
Inherits CfnResource
Implements IInspectable, ITaggable
Remarks
You can add datasets to the dataset group when you create the dataset group, or later by using the UpdateDatasetGroup operation.
Amazon Forecast is no longer available to new customers. Existing customers of Amazon Forecast can continue to use the service as normal. Learn more"
After creating a dataset group and adding datasets, you use the dataset group when you create a predictor. For more information, see Dataset groups .
To get a list of all your datasets groups, use the ListDatasetGroups operation.
The Status
of a dataset group must be ACTIVE
before you can use the dataset group to create a predictor. To get the status, use the DescribeDatasetGroup operation.
CloudformationResource: AWS::Forecast::DatasetGroup
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.Forecast;
var cfnDatasetGroup = new CfnDatasetGroup(this, "MyCfnDatasetGroup", new CfnDatasetGroupProps {
DatasetGroupName = "datasetGroupName",
Domain = "domain",
// the properties below are optional
DatasetArns = new [] { "datasetArns" },
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
});
Synopsis
Constructors
CfnDatasetGroup(ByRefValue) | Used by jsii to construct an instance of this class from a Javascript-owned object reference |
CfnDatasetGroup(DeputyBase.DeputyProps) | Used by jsii to construct an instance of this class from DeputyProps |
CfnDatasetGroup(Construct, String, ICfnDatasetGroupProps) |
Properties
AttrDatasetGroupArn | The Amazon Resource Name (ARN) of the dataset group. |
CFN_RESOURCE_TYPE_NAME | The CloudFormation resource type name for this resource class. |
CfnProperties | |
DatasetArns | An array of Amazon Resource Names (ARNs) of the datasets that you want to include in the dataset group. |
DatasetGroupName | The name of the dataset group. |
Domain | The domain associated with the dataset group. |
Tags | Tag Manager which manages the tags for this resource. |
TagsRaw | An array of key-value pairs to apply to this resource. |
Methods
Inspect(TreeInspector) | Examines the CloudFormation resource and discloses attributes. |
RenderProperties(IDictionary<String, Object>) |
Constructors
CfnDatasetGroup(ByRefValue)
Used by jsii to construct an instance of this class from a Javascript-owned object reference
protected CfnDatasetGroup(ByRefValue reference)
Parameters
- reference Amazon.JSII.Runtime.Deputy.ByRefValue
The Javascript-owned object reference
CfnDatasetGroup(DeputyBase.DeputyProps)
Used by jsii to construct an instance of this class from DeputyProps
protected CfnDatasetGroup(DeputyBase.DeputyProps props)
Parameters
- props Amazon.JSII.Runtime.Deputy.DeputyBase.DeputyProps
The deputy props
CfnDatasetGroup(Construct, String, ICfnDatasetGroupProps)
public CfnDatasetGroup(Construct scope, string id, ICfnDatasetGroupProps props)
Parameters
- scope Constructs.Construct
Scope in which this resource is defined.
- id System.String
Construct identifier for this resource (unique in its scope).
- props ICfnDatasetGroupProps
Resource properties.
Properties
AttrDatasetGroupArn
The Amazon Resource Name (ARN) of the dataset group.
public virtual string AttrDatasetGroupArn { get; }
Property Value
System.String
Remarks
CloudformationAttribute: DatasetGroupArn
CFN_RESOURCE_TYPE_NAME
The CloudFormation resource type name for this resource class.
public static string CFN_RESOURCE_TYPE_NAME { get; }
Property Value
System.String
CfnProperties
protected override IDictionary<string, object> CfnProperties { get; }
Property Value
System.Collections.Generic.IDictionary<System.String, System.Object>
Overrides
DatasetArns
An array of Amazon Resource Names (ARNs) of the datasets that you want to include in the dataset group.
public virtual string[] DatasetArns { get; set; }
Property Value
System.String[]
DatasetGroupName
The name of the dataset group.
public virtual string DatasetGroupName { get; set; }
Property Value
System.String
Domain
The domain associated with the dataset group.
public virtual string Domain { get; set; }
Property Value
System.String
Tags
Tag Manager which manages the tags for this resource.
public virtual TagManager Tags { get; }
Property Value
TagsRaw
An array of key-value pairs to apply to this resource.
public virtual ICfnTag[] TagsRaw { get; set; }
Property Value
ICfnTag[]
Methods
Inspect(TreeInspector)
Examines the CloudFormation resource and discloses attributes.
public virtual void Inspect(TreeInspector inspector)
Parameters
- inspector TreeInspector
tree inspector to collect and process attributes.
RenderProperties(IDictionary<String, Object>)
protected override IDictionary<string, object> RenderProperties(IDictionary<string, object> props)
Parameters
- props System.Collections.Generic.IDictionary<System.String, System.Object>
Returns
System.Collections.Generic.IDictionary<System.String, System.Object>