interface S3PropertiesInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataZone.CfnConnection.S3PropertiesInputProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#CfnConnection_S3PropertiesInputProperty |
Java | software.amazon.awscdk.services.datazone.CfnConnection.S3PropertiesInputProperty |
Python | aws_cdk.aws_datazone.CfnConnection.S3PropertiesInputProperty |
TypeScript | aws-cdk-lib » aws_datazone » CfnConnection » S3PropertiesInputProperty |
S3 Properties Input.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_datazone as datazone } from 'aws-cdk-lib';
const s3PropertiesInputProperty: datazone.CfnConnection.S3PropertiesInputProperty = {
s3Uri: 's3Uri',
// the properties below are optional
s3AccessGrantLocationId: 's3AccessGrantLocationId',
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | string | The Amazon S3 URI that's part of the Amazon S3 properties of a connection. |
| s3 | string | The Amazon S3 Access Grant location ID that's part of the Amazon S3 properties of a connection. |
s3Uri
Type:
string
The Amazon S3 URI that's part of the Amazon S3 properties of a connection.
s3AccessGrantLocationId?
Type:
string
(optional)
The Amazon S3 Access Grant location ID that's part of the Amazon S3 properties of a connection.

.NET
Go
Java
Python
TypeScript