interface CfnTablePolicyMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.S3Tables.CfnTablePolicyMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awss3tables#CfnTablePolicyMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.s3tables.CfnTablePolicyMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_s3tables.CfnTablePolicyMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_s3tables » 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 { aws_s3tables as s3tables } from '@aws-cdk/cfn-property-mixins';
declare const resourcePolicy: any;
const cfnTablePolicyMixinProps: s3tables.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