Show / Hide Table of Contents

Class CfnAnomalyDetector.S3SourceConfigProperty

Contains information about the configuration of the S3 bucket that contains source files.

Inheritance
System.Object
CfnAnomalyDetector.S3SourceConfigProperty
Implements
CfnAnomalyDetector.IS3SourceConfigProperty
Namespace: Amazon.CDK.AWS.LookoutMetrics
Assembly: Amazon.CDK.AWS.LookoutMetrics.dll
Syntax (csharp)
public class S3SourceConfigProperty : Object, CfnAnomalyDetector.IS3SourceConfigProperty
Syntax (vb)
Public Class S3SourceConfigProperty
    Inherits Object
    Implements CfnAnomalyDetector.IS3SourceConfigProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-s3sourceconfig.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.LookoutMetrics;

var s3SourceConfigProperty = new S3SourceConfigProperty {
    FileFormatDescriptor = new FileFormatDescriptorProperty {
        CsvFormatDescriptor = new CsvFormatDescriptorProperty {
            Charset = "charset",
            ContainsHeader = false,
            Delimiter = "delimiter",
            FileCompression = "fileCompression",
            HeaderList = new [] { "headerList" },
            QuoteSymbol = "quoteSymbol"
        },
        JsonFormatDescriptor = new JsonFormatDescriptorProperty {
            Charset = "charset",
            FileCompression = "fileCompression"
        }
    },
    RoleArn = "roleArn",

    // the properties below are optional
    HistoricalDataPathList = new [] { "historicalDataPathList" },
    TemplatedPathList = new [] { "templatedPathList" }
};

Synopsis

Constructors

S3SourceConfigProperty()

Properties

FileFormatDescriptor

Contains information about a source file's formatting.

HistoricalDataPathList

A list of paths to the historical data files.

RoleArn

The ARN of an IAM role that has read and write access permissions to the source S3 bucket.

TemplatedPathList

A list of templated paths to the source files.

Constructors

S3SourceConfigProperty()

public S3SourceConfigProperty()

Properties

FileFormatDescriptor

Contains information about a source file's formatting.

public object FileFormatDescriptor { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-s3sourceconfig.html#cfn-lookoutmetrics-anomalydetector-s3sourceconfig-fileformatdescriptor

HistoricalDataPathList

A list of paths to the historical data files.

public string[] HistoricalDataPathList { get; set; }
Property Value

System.String[]

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-s3sourceconfig.html#cfn-lookoutmetrics-anomalydetector-s3sourceconfig-historicaldatapathlist

RoleArn

The ARN of an IAM role that has read and write access permissions to the source S3 bucket.

public string RoleArn { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-s3sourceconfig.html#cfn-lookoutmetrics-anomalydetector-s3sourceconfig-rolearn

TemplatedPathList

A list of templated paths to the source files.

public string[] TemplatedPathList { get; set; }
Property Value

System.String[]

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-s3sourceconfig.html#cfn-lookoutmetrics-anomalydetector-s3sourceconfig-templatedpathlist

Implements

CfnAnomalyDetector.IS3SourceConfigProperty
Back to top Generated by DocFX