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
/// The proposed access control configuration for a DynamoDB stream. You can propose a configuration for a new DynamoDB stream or an existing DynamoDB stream that you own by specifying the policy for the DynamoDB stream. For more information, see [PutResourcePolicy](https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_PutResourcePolicy.html).
2980
+
///
2981
+
/// * If the configuration is for an existing DynamoDB stream and you do not specify the DynamoDB policy, then the access preview uses the existing DynamoDB policy for the stream.
2982
+
///
2983
+
/// * If the access preview is for a new resource and you do not specify the policy, then the access preview assumes a DynamoDB stream without a policy.
2984
+
///
2985
+
/// * To propose deletion of an existing DynamoDB stream policy, you can specify an empty string for the DynamoDB policy.
/// The proposed access control configuration for a DynamoDB table or index. You can propose a configuration for a new DynamoDB table or index or an existing DynamoDB table or index that you own by specifying the policy for the DynamoDB table or index. For more information, see [PutResourcePolicy](https://docs.aws.amazon.com/amazondynamodb/latest/APIReference/API_PutResourcePolicy.html).
3021
+
///
3022
+
/// * If the configuration is for an existing DynamoDB table or index and you do not specify the DynamoDB policy, then the access preview uses the existing DynamoDB policy for the table or index.
3023
+
///
3024
+
/// * If the access preview is for a new resource and you do not specify the policy, then the access preview assumes a DynamoDB table without a policy.
3025
+
///
3026
+
/// * To propose deletion of an existing DynamoDB table or index policy, you can specify an empty string for the DynamoDB policy.
Copy file name to clipboardExpand all lines: Sources/Services/AWSBackup/BackupClient.swift
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4144,7 +4144,7 @@ extension BackupClient {
4144
4144
4145
4145
/// Performs the `StopBackupJob` operation on the `CryoControllerUserManager` service.
4146
4146
///
4147
-
/// Attempts to cancel a job to create a one-time backup of a resource. This action is not supported for the following services: Amazon FSx for Windows File Server, Amazon FSx for Lustre, FSx for ONTAP , Amazon FSx for OpenZFS, Amazon DocumentDB (with MongoDB compatibility), Amazon RDS, Amazon Aurora, and Amazon Neptune.
4147
+
/// Attempts to cancel a job to create a one-time backup of a resource. This action is not supported for the following services: Amazon FSx for Windows File Server, Amazon FSx for Lustre, Amazon FSx for NetApp ONTAP , Amazon FSx for OpenZFS, Amazon DocumentDB (with MongoDB compatibility), Amazon RDS, Amazon Aurora, and Amazon Neptune.
/// The name of a control. This name is between 1 and 256 characters.
7686
7686
/// This member is required.
7687
7687
public var controlName: Swift.String?
7688
-
/// The scope of a control. The control scope defines what the control will evaluate. Three examples of control scopes are: a specific backup plan, all backup plans with a specific tag, or all backup plans.
7688
+
/// The scope of a control. The control scope defines what the control will evaluate. Three examples of control scopes are: a specific backup plan, all backup plans with a specific tag, or all backup plans. For more information, see [ControlScope].(https://docs.aws.amazon.com/aws-backup/latest/devguide/API_ControlScope.html)
7689
7689
public var controlScope: BackupClientTypes.ControlScope?
7690
7690
7691
7691
public init(
@@ -9926,7 +9926,7 @@ public struct ListBackupJobSummariesInput: Swift.Equatable {
9926
9926
public var nextToken: Swift.String?
9927
9927
/// Returns the job count for the specified resource type. Use request GetSupportedResourceTypes to obtain strings for supported resource types. The the value ANY returns count of all resource types. AGGREGATE_ALL aggregates job counts for all resource types and returns the sum. The type of Amazon Web Services resource to be backed up; for example, an Amazon Elastic Block Store (Amazon EBS) volume or an Amazon Relational Database Service (Amazon RDS) database.
9928
9928
public var resourceType: Swift.String?
9929
-
/// This parameter returns the job count for jobs with the specified state. The the value ANY returns count of all states. AGGREGATE_ALL aggregates job counts for all states and returns the sum.
9929
+
/// This parameter returns the job count for jobs with the specified state. The the value ANY returns count of all states. AGGREGATE_ALL aggregates job counts for all states and returns the sum. Completed with issues is a status found only in the Backup console. For API, this status refers to jobs with a state of COMPLETED and a MessageCategory with a value other than SUCCESS; that is, the status is completed but comes with a status message. To obtain the job count for Completed with issues, run two GET requests, and subtract the second, smaller number: GET /audit/backup-job-summaries?AggregationPeriod=FOURTEEN_DAYS&State=COMPLETED GET /audit/backup-job-summaries?AggregationPeriod=FOURTEEN_DAYS&MessageCategory=SUCCESS&State=COMPLETED
9930
9930
public var state: BackupClientTypes.BackupJobStatus?
9931
9931
9932
9932
public init(
@@ -10165,7 +10165,7 @@ public struct ListBackupJobsInput: Swift.Equatable {
10165
10165
///
10166
10166
/// * VirtualMachine for virtual machines
10167
10167
public var byResourceType: Swift.String?
10168
-
/// Returns only backup jobs that are in the specified state.
10168
+
/// Returns only backup jobs that are in the specified state. Completed with issues is a status found only in the Backup console. For API, this status refers to jobs with a state of COMPLETED and a MessageCategory with a value other than SUCCESS; that is, the status is completed but comes with a status message. To obtain the job count for Completed with issues, run two GET requests, and subtract the second, smaller number: GET /backup-jobs/?state=COMPLETED GET /backup-jobs/?messageCategory=SUCCESS&state=COMPLETED
10169
10169
public var byState: BackupClientTypes.BackupJobState?
public struct ListRecoveryPointsByResourceInput: Swift.Equatable {
12221
+
/// This attribute filters recovery points based on ownership. If this is set to TRUE, the response will contain recovery points associated with the selected resources that are managed by Backup. If this is set to FALSE, the response will contain all recovery points associated with the selected resource. Type: Boolean
12222
+
public var managedByAWSBackupOnly: Swift.Bool?
12217
12223
/// The maximum number of items to be returned. Amazon RDS requires a value of at least 20.
12218
12224
public var maxResults: Swift.Int?
12219
12225
/// The next item following a partial list of returned items. For example, if a request is made to return MaxResults number of items, NextToken allows you to return more items in your list starting at the location pointed to by the next token.
@@ -12223,11 +12229,13 @@ public struct ListRecoveryPointsByResourceInput: Swift.Equatable {
0 commit comments