interface CfnTablePolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.S3Tables.Mixins.CfnTablePolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awss3tables/mixins#CfnTablePolicyMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.s3tables.mixins.CfnTablePolicyMixinProps |
Python | aws_cdk.mixins_preview.aws_s3tables.mixins.CfnTablePolicyMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_s3tables » mixins » CfnTablePolicyMixinProps |
Properties for CfnTablePolicyPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablepolicy.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as s3tables_mixins } from '@aws-cdk/mixins-preview/aws-s3tables';
declare const resourcePolicy: any;
const cfnTablePolicyMixinProps: s3tables_mixins.CfnTablePolicyMixinProps = {
resourcePolicy: resourcePolicy,
tableArn: 'tableArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | any | The JSON that defines the policy. |
| table | string | The Amazon Resource Name (ARN) of the table. |
resourcePolicy?
Type:
any
(optional)
The JSON that defines the policy.
tableArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the table.

.NET
Go
Java
Python
TypeScript