Class CfnDatastore.CustomerManagedS3Property
S3-customer-managed;
Inheritance
Implements
Namespace: Amazon.CDK.AWS.IoTAnalytics
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CustomerManagedS3Property : Object, CfnDatastore.ICustomerManagedS3Property
Syntax (vb)
Public Class CustomerManagedS3Property
Inherits Object
Implements CfnDatastore.ICustomerManagedS3Property
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.
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 customerManagedS3Property = new CustomerManagedS3Property {
Bucket = "bucket",
RoleArn = "roleArn",
// the properties below are optional
KeyPrefix = "keyPrefix"
};
Synopsis
Constructors
CustomerManagedS3Property() |
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. |
RoleArn | The ARN of the role that grants AWS IoT Analytics permission to interact with your Amazon S3 resources. |
Constructors
CustomerManagedS3Property()
public CustomerManagedS3Property()
Properties
Bucket
The name of the Amazon S3 bucket where your data is stored.
public string Bucket { get; set; }
Property Value
System.String
Remarks
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 (/).
RoleArn
The ARN of the role that grants AWS IoT Analytics permission to interact with your Amazon S3 resources.
public string RoleArn { get; set; }
Property Value
System.String