Show / Hide Table of Contents

Class CfnDatastore.CustomerManagedS3StorageProperty

Amazon S3 -customer-managed;

Inheritance
System.Object
CfnDatastore.CustomerManagedS3StorageProperty
Implements
CfnDatastore.ICustomerManagedS3StorageProperty
Namespace: Amazon.CDK.AWS.IoTAnalytics
Assembly: Amazon.CDK.AWS.IoTAnalytics.dll
Syntax (csharp)
public class CustomerManagedS3StorageProperty : Object, CfnDatastore.ICustomerManagedS3StorageProperty
Syntax (vb)
Public Class CustomerManagedS3StorageProperty
    Inherits Object
    Implements CfnDatastore.ICustomerManagedS3StorageProperty
Remarks

When you choose customer-managed storage, the retentionPeriod parameter is ignored. You can't change the choice of Amazon S3 storage after your data store is created.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-customermanageds3storage.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.IoTAnalytics;

var customerManagedS3StorageProperty = new CustomerManagedS3StorageProperty {
    Bucket = "bucket",

    // the properties below are optional
    KeyPrefix = "keyPrefix"
};

Synopsis

Constructors

CustomerManagedS3StorageProperty()

Properties

Bucket

The name of the Amazon S3 bucket where your data is stored.

KeyPrefix

(Optional) The prefix used to create the keys of the data store data objects.

Constructors

CustomerManagedS3StorageProperty()

public CustomerManagedS3StorageProperty()

Properties

Bucket

The name of the Amazon S3 bucket where your data is stored.

public string Bucket { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-customermanageds3storage.html#cfn-iotanalytics-datastore-customermanageds3storage-bucket

KeyPrefix

(Optional) The prefix used to create the keys of the data store data objects.

public string KeyPrefix { get; set; }
Property Value

System.String

Remarks

Each object in an Amazon S3 bucket has a key that is its unique identifier in the bucket. Each object in a bucket has exactly one key. The prefix must end with a forward slash (/).

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-datastore-customermanageds3storage.html#cfn-iotanalytics-datastore-customermanageds3storage-keyprefix

Implements

CfnDatastore.ICustomerManagedS3StorageProperty
Back to top Generated by DocFX