You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(client-accessanalyzer): This release adds support for policy validation and external access findings for DynamoDB tables and streams. IAM Access Analyzer helps you author functional and secure resource-based policies and identify cross-account access. Updated service API, documentation, and paginators.
* <p>The proposed access control configuration for a DynamoDB stream. You can propose a
1079
+
* configuration for a new DynamoDB stream or an existing DynamoDB stream that you own by specifying
1080
+
* the policy for the DynamoDB stream. For more information, see <a href="https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_PutResourcePolicy.html">PutResourcePolicy</a>.</p>
1081
+
* <ul>
1082
+
* <li>
1083
+
* <p>If the configuration is for an existing DynamoDB stream and you do not specify the
1084
+
* DynamoDB policy, then the access preview uses the existing DynamoDB policy for the
1085
+
* stream.</p>
1086
+
* </li>
1087
+
* <li>
1088
+
* <p>If the access preview is for a new resource and you do not specify the policy,
1089
+
* then the access preview assumes a DynamoDB stream without a policy.</p>
1090
+
* </li>
1091
+
* <li>
1092
+
* <p>To propose deletion of an existing DynamoDB stream policy, you can specify an empty
1093
+
* string for the DynamoDB policy.</p>
1094
+
* </li>
1095
+
* </ul>
1096
+
* @public
1097
+
*/
1098
+
exportinterfaceDynamodbStreamConfiguration{
1099
+
/**
1100
+
* <p>The proposed resource policy defining who can access or manage the DynamoDB stream.</p>
1101
+
* @public
1102
+
*/
1103
+
streamPolicy?: string;
1104
+
}
1105
+
1106
+
/**
1107
+
* <p>The proposed access control configuration for a DynamoDB table or index. You can propose a
1108
+
* configuration for a new DynamoDB table or index or an existing DynamoDB table or index that you
1109
+
* own by specifying the policy for the DynamoDB table or index. For more information, see <a href="https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_PutResourcePolicy.html">PutResourcePolicy</a>.</p>
1110
+
* <ul>
1111
+
* <li>
1112
+
* <p>If the configuration is for an existing DynamoDB table or index and you do not
1113
+
* specify the DynamoDB policy, then the access preview uses the existing DynamoDB policy for
1114
+
* the table or index.</p>
1115
+
* </li>
1116
+
* <li>
1117
+
* <p>If the access preview is for a new resource and you do not specify the policy,
1118
+
* then the access preview assumes a DynamoDB table without a policy.</p>
1119
+
* </li>
1120
+
* <li>
1121
+
* <p>To propose deletion of an existing DynamoDB table or index policy, you can specify an
1122
+
* empty string for the DynamoDB policy.</p>
1123
+
* </li>
1124
+
* </ul>
1125
+
* @public
1126
+
*/
1127
+
exportinterfaceDynamodbTableConfiguration{
1128
+
/**
1129
+
* <p>The proposed resource policy defining who can access or manage the DynamoDB table.</p>
1130
+
* @public
1131
+
*/
1132
+
tablePolicy?: string;
1133
+
}
1134
+
1077
1135
/**
1078
1136
* <p>The proposed access control configuration for an Amazon EBS volume snapshot. You can propose
1079
1137
* a configuration for a new Amazon EBS volume snapshot or an Amazon EBS volume snapshot that you own by
0 commit comments