aws-sdk 2.1621.0 → 2.1622.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -611,6 +611,14 @@ declare class QuickSight extends Service {
611
611
  * Provides a summary and status of IP rules.
612
612
  */
613
613
  describeIpRestriction(callback?: (err: AWSError, data: QuickSight.Types.DescribeIpRestrictionResponse) => void): Request<QuickSight.Types.DescribeIpRestrictionResponse, AWSError>;
614
+ /**
615
+ * Describes all customer managed key registrations in a Amazon QuickSight account.
616
+ */
617
+ describeKeyRegistration(params: QuickSight.Types.DescribeKeyRegistrationRequest, callback?: (err: AWSError, data: QuickSight.Types.DescribeKeyRegistrationResponse) => void): Request<QuickSight.Types.DescribeKeyRegistrationResponse, AWSError>;
618
+ /**
619
+ * Describes all customer managed key registrations in a Amazon QuickSight account.
620
+ */
621
+ describeKeyRegistration(callback?: (err: AWSError, data: QuickSight.Types.DescribeKeyRegistrationResponse) => void): Request<QuickSight.Types.DescribeKeyRegistrationResponse, AWSError>;
614
622
  /**
615
623
  * Describes the current namespace.
616
624
  */
@@ -1267,6 +1275,14 @@ declare class QuickSight extends Service {
1267
1275
  * Updates the content and status of IP rules. Traffic from a source is allowed when the source satisfies either the IpRestrictionRule, VpcIdRestrictionRule, or VpcEndpointIdRestrictionRule. To use this operation, you must provide the entire map of rules. You can use the DescribeIpRestriction operation to get the current rule map.
1268
1276
  */
1269
1277
  updateIpRestriction(callback?: (err: AWSError, data: QuickSight.Types.UpdateIpRestrictionResponse) => void): Request<QuickSight.Types.UpdateIpRestrictionResponse, AWSError>;
1278
+ /**
1279
+ * Updates a customer managed key in a Amazon QuickSight account.
1280
+ */
1281
+ updateKeyRegistration(params: QuickSight.Types.UpdateKeyRegistrationRequest, callback?: (err: AWSError, data: QuickSight.Types.UpdateKeyRegistrationResponse) => void): Request<QuickSight.Types.UpdateKeyRegistrationResponse, AWSError>;
1282
+ /**
1283
+ * Updates a customer managed key in a Amazon QuickSight account.
1284
+ */
1285
+ updateKeyRegistration(callback?: (err: AWSError, data: QuickSight.Types.UpdateKeyRegistrationResponse) => void): Request<QuickSight.Types.UpdateKeyRegistrationResponse, AWSError>;
1270
1286
  /**
1271
1287
  * Use the UpdatePublicSharingSettings operation to turn on or turn off the public sharing settings of an Amazon QuickSight dashboard. To use this operation, turn on session capacity pricing for your Amazon QuickSight account. Before you can turn on public sharing on your account, make sure to give public sharing permissions to an administrative user in the Identity and Access Management (IAM) console. For more information on using IAM with Amazon QuickSight, see Using Amazon QuickSight with IAM in the Amazon QuickSight User Guide.
1272
1288
  */
@@ -8199,6 +8215,34 @@ declare namespace QuickSight {
8199
8215
  */
8200
8216
  Status?: StatusCode;
8201
8217
  }
8218
+ export interface DescribeKeyRegistrationRequest {
8219
+ /**
8220
+ * The ID of the Amazon Web Services account that contains the customer managed key registration that you want to describe.
8221
+ */
8222
+ AwsAccountId: AwsAccountId;
8223
+ /**
8224
+ * Determines whether the request returns the default key only.
8225
+ */
8226
+ DefaultKeyOnly?: Boolean;
8227
+ }
8228
+ export interface DescribeKeyRegistrationResponse {
8229
+ /**
8230
+ * The ID of the Amazon Web Services account that contains the customer managed key registration specified in the request.
8231
+ */
8232
+ AwsAccountId?: AwsAccountId;
8233
+ /**
8234
+ * A list of RegisteredCustomerManagedKey objects in a Amazon QuickSight account.
8235
+ */
8236
+ KeyRegistration?: KeyRegistration;
8237
+ /**
8238
+ * The Amazon Web Services request ID for this operation.
8239
+ */
8240
+ RequestId?: NonEmptyString;
8241
+ /**
8242
+ * The HTTP status of the request.
8243
+ */
8244
+ Status?: StatusCode;
8245
+ }
8202
8246
  export interface DescribeNamespaceRequest {
8203
8247
  /**
8204
8248
  * The ID for the Amazon Web Services account that contains the Amazon QuickSight namespace that you want to describe.
@@ -8944,6 +8988,25 @@ declare namespace QuickSight {
8944
8988
  AvailabilityStatus?: DashboardBehavior;
8945
8989
  }
8946
8990
  export type Expression = string;
8991
+ export type FailedKeyRegistrationEntries = FailedKeyRegistrationEntry[];
8992
+ export interface FailedKeyRegistrationEntry {
8993
+ /**
8994
+ * The ARN of the KMS key that failed to update.
8995
+ */
8996
+ KeyArn?: String;
8997
+ /**
8998
+ * A message that provides information about why a FailedKeyRegistrationEntry error occurred.
8999
+ */
9000
+ Message: NonEmptyString;
9001
+ /**
9002
+ * The HTTP status of a FailedKeyRegistrationEntry error.
9003
+ */
9004
+ StatusCode: StatusCode;
9005
+ /**
9006
+ * A boolean that indicates whether a FailedKeyRegistrationEntry resulted from user error. If the value of this property is True, the error was caused by user error. If the value of this property is False, the error occurred on the backend. If your job continues fail and with a False SenderFault value, contact Amazon Web Services Support.
9007
+ */
9008
+ SenderFault: Boolean;
9009
+ }
8947
9010
  export interface FieldBasedTooltip {
8948
9011
  /**
8949
9012
  * The visibility of Show aggregations.
@@ -11260,6 +11323,7 @@ declare namespace QuickSight {
11260
11323
  Type: KPIVisualStandardLayoutType;
11261
11324
  }
11262
11325
  export type KPIVisualStandardLayoutType = "CLASSIC"|"VERTICAL"|string;
11326
+ export type KeyRegistration = RegisteredCustomerManagedKey[];
11263
11327
  export interface LabelOptions {
11264
11328
  /**
11265
11329
  * Determines whether or not the label is visible.
@@ -14391,7 +14455,7 @@ declare namespace QuickSight {
14391
14455
  /**
14392
14456
  * The user whose permissions and group memberships will be used by Amazon QuickSight to access the cluster. If this user already exists in your database, Amazon QuickSight is granted the same permissions that the user has. If the user doesn't exist, set the value of AutoCreateDatabaseUser to True to create a new user with PUBLIC permissions.
14393
14457
  */
14394
- DatabaseUser: DatabaseUser;
14458
+ DatabaseUser?: DatabaseUser;
14395
14459
  /**
14396
14460
  * A list of groups whose permissions will be granted to Amazon QuickSight to access the cluster. These permissions are combined with the permissions granted to Amazon QuickSight by the DatabaseUser. If you choose to include this parameter, the RoleArn must grant access to redshift:JoinGroup.
14397
14461
  */
@@ -14599,7 +14663,7 @@ declare namespace QuickSight {
14599
14663
  */
14600
14664
  Email: String;
14601
14665
  /**
14602
- * The Amazon QuickSight role for the user. The user role can be one of the following: READER: A user who has read-only access to dashboards. AUTHOR: A user who can create data sources, datasets, analyses, and dashboards. ADMIN: A user who is an author, who can also manage Amazon QuickSight settings. RESTRICTED_READER: This role isn't currently available for use. RESTRICTED_AUTHOR: This role isn't currently available for use.
14666
+ * The Amazon QuickSight role for the user. The user role can be one of the following: READER: A user who has read-only access to dashboards. AUTHOR: A user who can create data sources, datasets, analyses, and dashboards. ADMIN: A user who is an author, who can also manage Amazon QuickSight settings. READER_PRO: Reader Pro adds Generative BI capabilities to the Reader role. Reader Pros have access to Amazon Q in Amazon QuickSight, can build stories with Amazon Q, and can generate executive summaries from dashboards. AUTHOR_PRO: Author Pro adds Generative BI capabilities to the Author role. Author Pros can author dashboards with natural language with Amazon Q, build stories with Amazon Q, create Topics for Q&amp;A, and generate executive summaries from dashboards. ADMIN_PRO: Admin Pros are Author Pros who can also manage Amazon QuickSight administrative settings. Admin Pro users are billed at Author Pro pricing. RESTRICTED_READER: This role isn't currently available for use. RESTRICTED_AUTHOR: This role isn't currently available for use.
14603
14667
  */
14604
14668
  UserRole: UserRole;
14605
14669
  /**
@@ -14661,6 +14725,16 @@ declare namespace QuickSight {
14661
14725
  */
14662
14726
  Status?: StatusCode;
14663
14727
  }
14728
+ export interface RegisteredCustomerManagedKey {
14729
+ /**
14730
+ * The ARN of the KMS key that is registered to a Amazon QuickSight account for encryption and decryption use.
14731
+ */
14732
+ KeyArn?: String;
14733
+ /**
14734
+ * Indicates whether a RegisteredCustomerManagedKey is set as the default key for encryption and decryption use.
14735
+ */
14736
+ DefaultKey?: Boolean;
14737
+ }
14664
14738
  export interface RegisteredUserConsoleFeatureConfigurations {
14665
14739
  /**
14666
14740
  * The state persistence configurations of an embedded Amazon QuickSight console.
@@ -16423,6 +16497,17 @@ declare namespace QuickSight {
16423
16497
  */
16424
16498
  StyleTargets?: TableStyleTargetList;
16425
16499
  }
16500
+ export type SuccessfulKeyRegistrationEntries = SuccessfulKeyRegistrationEntry[];
16501
+ export interface SuccessfulKeyRegistrationEntry {
16502
+ /**
16503
+ * The ARN of the KMS key that is associated with the SuccessfulKeyRegistrationEntry entry.
16504
+ */
16505
+ KeyArn: String;
16506
+ /**
16507
+ * The HTTP status of a SuccessfulKeyRegistrationEntry entry.
16508
+ */
16509
+ StatusCode: StatusCode;
16510
+ }
16426
16511
  export type Suffix = string;
16427
16512
  export type Synonyms = LimitedString[];
16428
16513
  export interface TableAggregatedFieldWells {
@@ -19070,6 +19155,30 @@ declare namespace QuickSight {
19070
19155
  */
19071
19156
  Status?: StatusCode;
19072
19157
  }
19158
+ export interface UpdateKeyRegistrationRequest {
19159
+ /**
19160
+ * The ID of the Amazon Web Services account that contains the customer managed key registration that you want to update.
19161
+ */
19162
+ AwsAccountId: AwsAccountId;
19163
+ /**
19164
+ * A list of RegisteredCustomerManagedKey objects to be updated to the Amazon QuickSight account.
19165
+ */
19166
+ KeyRegistration: KeyRegistration;
19167
+ }
19168
+ export interface UpdateKeyRegistrationResponse {
19169
+ /**
19170
+ * A list of all customer managed key registrations that failed to update.
19171
+ */
19172
+ FailedKeyRegistration?: FailedKeyRegistrationEntries;
19173
+ /**
19174
+ * A list of all customer managed key registrations that were successfully updated.
19175
+ */
19176
+ SuccessfulKeyRegistration?: SuccessfulKeyRegistrationEntries;
19177
+ /**
19178
+ * The Amazon Web Services request ID for this operation.
19179
+ */
19180
+ RequestId?: NonEmptyString;
19181
+ }
19073
19182
  export type UpdateLinkPermissionList = ResourcePermission[];
19074
19183
  export interface UpdatePublicSharingSettingsRequest {
19075
19184
  /**
@@ -19558,7 +19667,7 @@ declare namespace QuickSight {
19558
19667
  */
19559
19668
  Email: String;
19560
19669
  /**
19561
- * The Amazon QuickSight role of the user. The role can be one of the following default security cohorts: READER: A user who has read-only access to dashboards. AUTHOR: A user who can create data sources, datasets, analyses, and dashboards. ADMIN: A user who is an author, who can also manage Amazon QuickSight settings. READER_PRO: Reader Pro adds Generative BI capabilities to the Reader role. Reader Pros have access to Amazon Q Business, can build stories with Amazon Q, and can generate executive summaries from dashboards. AUTHOR_PRO: Author Pro adds Generative BI capabilities to the Author role. Author Pros can author dashboards with natural language with Amazon Q, build stories with Amazon Q, create Topics for Q&amp;A, and generate executive summaries from dashboards. ADMIN_PRO: Admin Pros are Author Pros who can also manage Amazon QuickSight administrative settings. Admin Pro users are billed at Author Pro pricing. The name of the Amazon QuickSight role is invisible to the user except for the console screens dealing with permissions.
19670
+ * The Amazon QuickSight role of the user. The role can be one of the following default security cohorts: READER: A user who has read-only access to dashboards. AUTHOR: A user who can create data sources, datasets, analyses, and dashboards. ADMIN: A user who is an author, who can also manage Amazon QuickSight settings. READER_PRO: Reader Pro adds Generative BI capabilities to the Reader role. Reader Pros have access to Amazon Q in Amazon QuickSight, can build stories with Amazon Q, and can generate executive summaries from dashboards. AUTHOR_PRO: Author Pro adds Generative BI capabilities to the Author role. Author Pros can author dashboards with natural language with Amazon Q, build stories with Amazon Q, create Topics for Q&amp;A, and generate executive summaries from dashboards. ADMIN_PRO: Admin Pros are Author Pros who can also manage Amazon QuickSight administrative settings. Admin Pro users are billed at Author Pro pricing. The name of the Amazon QuickSight role is invisible to the user except for the console screens dealing with permissions.
19562
19671
  */
19563
19672
  Role: UserRole;
19564
19673
  /**
@@ -19688,7 +19797,7 @@ declare namespace QuickSight {
19688
19797
  */
19689
19798
  Email?: String;
19690
19799
  /**
19691
- * The Amazon QuickSight role for the user. The user role can be one of the following:. READER: A user who has read-only access to dashboards. AUTHOR: A user who can create data sources, datasets, analyses, and dashboards. ADMIN: A user who is an author, who can also manage Amazon Amazon QuickSight settings. READER_PRO: Reader Pro adds Generative BI capabilities to the Reader role. Reader Pros have access to Amazon Q Business, can build stories with Amazon Q, and can generate executive summaries from dashboards. AUTHOR_PRO: Author Pro adds Generative BI capabilities to the Author role. Author Pros can author dashboards with natural language with Amazon Q, build stories with Amazon Q, create Topics for Q&amp;A, and generate executive summaries from dashboards. ADMIN_PRO: Admin Pros are Author Pros who can also manage Amazon QuickSight administrative settings. Admin Pro users are billed at Author Pro pricing. RESTRICTED_READER: This role isn't currently available for use. RESTRICTED_AUTHOR: This role isn't currently available for use.
19800
+ * The Amazon QuickSight role for the user. The user role can be one of the following:. READER: A user who has read-only access to dashboards. AUTHOR: A user who can create data sources, datasets, analyses, and dashboards. ADMIN: A user who is an author, who can also manage Amazon Amazon QuickSight settings. READER_PRO: Reader Pro adds Generative BI capabilities to the Reader role. Reader Pros have access to Amazon Q in Amazon QuickSight, can build stories with Amazon Q, and can generate executive summaries from dashboards. AUTHOR_PRO: Author Pro adds Generative BI capabilities to the Author role. Author Pros can author dashboards with natural language with Amazon Q, build stories with Amazon Q, create Topics for Q&amp;A, and generate executive summaries from dashboards. ADMIN_PRO: Admin Pros are Author Pros who can also manage Amazon QuickSight administrative settings. Admin Pro users are billed at Author Pro pricing. RESTRICTED_READER: This role isn't currently available for use. RESTRICTED_AUTHOR: This role isn't currently available for use.
19692
19801
  */
19693
19802
  Role?: UserRole;
19694
19803
  /**
@@ -421,11 +421,11 @@ declare class SageMaker extends Service {
421
421
  */
422
422
  createProject(callback?: (err: AWSError, data: SageMaker.Types.CreateProjectOutput) => void): Request<SageMaker.Types.CreateProjectOutput, AWSError>;
423
423
  /**
424
- * Creates a space used for real time collaboration in a domain.
424
+ * Creates a private space or a space used for real time collaboration in a domain.
425
425
  */
426
426
  createSpace(params: SageMaker.Types.CreateSpaceRequest, callback?: (err: AWSError, data: SageMaker.Types.CreateSpaceResponse) => void): Request<SageMaker.Types.CreateSpaceResponse, AWSError>;
427
427
  /**
428
- * Creates a space used for real time collaboration in a domain.
428
+ * Creates a private space or a space used for real time collaboration in a domain.
429
429
  */
430
430
  createSpace(callback?: (err: AWSError, data: SageMaker.Types.CreateSpaceResponse) => void): Request<SageMaker.Types.CreateSpaceResponse, AWSError>;
431
431
  /**
@@ -6674,6 +6674,10 @@ declare namespace SageMaker {
6674
6674
  * Configures notification of workers regarding available or expiring work items.
6675
6675
  */
6676
6676
  NotificationConfiguration?: NotificationConfiguration;
6677
+ /**
6678
+ * Use this optional parameter to constrain access to an Amazon S3 resource based on the IP address using supported IAM global condition keys. The Amazon S3 resource is accessed in the worker portal using a Amazon S3 presigned URL.
6679
+ */
6680
+ WorkerAccessConfiguration?: WorkerAccessConfiguration;
6677
6681
  /**
6678
6682
  * An array of key-value pairs. For more information, see Resource Tag and Using Cost Allocation Tags in the Amazon Web Services Billing and Cost Management User Guide.
6679
6683
  */
@@ -11612,6 +11616,7 @@ declare namespace SageMaker {
11612
11616
  export interface EnableSagemakerServicecatalogPortfolioOutput {
11613
11617
  }
11614
11618
  export type EnableSessionTagChaining = boolean;
11619
+ export type EnabledOrDisabled = "Enabled"|"Disabled"|string;
11615
11620
  export interface Endpoint {
11616
11621
  /**
11617
11622
  * The name of the endpoint.
@@ -13122,6 +13127,16 @@ declare namespace SageMaker {
13122
13127
  */
13123
13128
  SourceIdentity?: String;
13124
13129
  }
13130
+ export interface IamPolicyConstraints {
13131
+ /**
13132
+ * When SourceIp is Enabled the worker's IP address when a task is rendered in the worker portal is added to the IAM policy as a Condition used to generate the Amazon S3 presigned URL. This IP address is checked by Amazon S3 and must match in order for the Amazon S3 resource to be rendered in the worker portal.
13133
+ */
13134
+ SourceIp?: EnabledOrDisabled;
13135
+ /**
13136
+ * When VpcSourceIp is Enabled the worker's IP address when a task is rendered in private worker portal inside the VPC is added to the IAM policy as a Condition used to generate the Amazon S3 presigned URL. To render the task successfully Amazon S3 checks that the presigned URL is being accessed over an Amazon S3 VPC Endpoint, and that the worker's IP address matches the IP address in the IAM policy. To learn more about configuring private worker portal, see Use Amazon VPC mode from a private worker portal.
13137
+ */
13138
+ VpcSourceIp?: EnabledOrDisabled;
13139
+ }
13125
13140
  export type IdempotencyToken = string;
13126
13141
  export interface IdentityProviderOAuthSetting {
13127
13142
  /**
@@ -14267,7 +14282,7 @@ declare namespace SageMaker {
14267
14282
  */
14268
14283
  NextToken?: NextToken;
14269
14284
  /**
14270
- * The total number of items to return in the response. If the total number of items available is more than the value specified, a NextToken is provided in the response. To resume pagination, provide the NextToken value in the as part of a subsequent call. The default value is 10.
14285
+ * This parameter defines the maximum number of results that can be returned in a single response. The MaxResults parameter is an upper bound, not a target. If there are more results available than the value specified, a NextToken is provided in the response. The NextToken indicates that the user should get the next set of results by providing this token as a part of a subsequent call. The default value for MaxResults is 10.
14271
14286
  */
14272
14287
  MaxResults?: MaxResults;
14273
14288
  /**
@@ -14853,7 +14868,7 @@ declare namespace SageMaker {
14853
14868
  */
14854
14869
  NextToken?: NextToken;
14855
14870
  /**
14856
- * The total number of items to return in the response. If the total number of items available is more than the value specified, a NextToken is provided in the response. To resume pagination, provide the NextToken value in the as part of a subsequent call. The default value is 10.
14871
+ * This parameter defines the maximum number of results that can be returned in a single response. The MaxResults parameter is an upper bound, not a target. If there are more results available than the value specified, a NextToken is provided in the response. The NextToken indicates that the user should get the next set of results by providing this token as a part of a subsequent call. The default value for MaxResults is 10.
14857
14872
  */
14858
14873
  MaxResults?: MaxResults;
14859
14874
  }
@@ -16883,7 +16898,7 @@ declare namespace SageMaker {
16883
16898
  */
16884
16899
  NextToken?: NextToken;
16885
16900
  /**
16886
- * The total number of items to return in the response. If the total number of items available is more than the value specified, a NextToken is provided in the response. To resume pagination, provide the NextToken value in the as part of a subsequent call. The default value is 10.
16901
+ * This parameter defines the maximum number of results that can be returned in a single response. The MaxResults parameter is an upper bound, not a target. If there are more results available than the value specified, a NextToken is provided in the response. The NextToken indicates that the user should get the next set of results by providing this token as a part of a subsequent call. The default value for MaxResults is 10.
16887
16902
  */
16888
16903
  MaxResults?: MaxResults;
16889
16904
  /**
@@ -17289,7 +17304,7 @@ declare namespace SageMaker {
17289
17304
  */
17290
17305
  NextToken?: NextToken;
17291
17306
  /**
17292
- * The total number of items to return in the response. If the total number of items available is more than the value specified, a NextToken is provided in the response. To resume pagination, provide the NextToken value in the as part of a subsequent call. The default value is 10.
17307
+ * This parameter defines the maximum number of results that can be returned in a single response. The MaxResults parameter is an upper bound, not a target. If there are more results available than the value specified, a NextToken is provided in the response. The NextToken indicates that the user should get the next set of results by providing this token as a part of a subsequent call. The default value for MaxResults is 10.
17293
17308
  */
17294
17309
  MaxResults?: MaxResults;
17295
17310
  /**
@@ -21169,6 +21184,12 @@ declare namespace SageMaker {
21169
21184
  export type S3ModelDataType = "S3Prefix"|"S3Object"|string;
21170
21185
  export type S3ModelUri = string;
21171
21186
  export type S3OutputPath = string;
21187
+ export interface S3Presign {
21188
+ /**
21189
+ * Use this parameter to specify the allowed request source. Possible sources are either SourceIp or VpcSourceIp.
21190
+ */
21191
+ IamPolicyConstraints?: IamPolicyConstraints;
21192
+ }
21172
21193
  export interface S3StorageConfig {
21173
21194
  /**
21174
21195
  * The S3 URI, or location in Amazon S3, of OfflineStore. S3 URIs have a format similar to the following: s3://example-bucket/prefix/.
@@ -24116,6 +24137,10 @@ declare namespace SageMaker {
24116
24137
  * Configures SNS topic notifications for available or expiring work items
24117
24138
  */
24118
24139
  NotificationConfiguration?: NotificationConfiguration;
24140
+ /**
24141
+ * Use this optional parameter to constrain access to an Amazon S3 resource based on the IP address using supported IAM global condition keys. The Amazon S3 resource is accessed in the worker portal using a Amazon S3 presigned URL.
24142
+ */
24143
+ WorkerAccessConfiguration?: WorkerAccessConfiguration;
24119
24144
  }
24120
24145
  export interface UpdateWorkteamResponse {
24121
24146
  /**
@@ -24318,6 +24343,12 @@ declare namespace SageMaker {
24318
24343
  */
24319
24344
  ReusedByJob?: TrainingJobName;
24320
24345
  }
24346
+ export interface WorkerAccessConfiguration {
24347
+ /**
24348
+ * Defines any Amazon S3 resource constraints.
24349
+ */
24350
+ S3Presign?: S3Presign;
24351
+ }
24321
24352
  export interface Workforce {
24322
24353
  /**
24323
24354
  * The name of the private workforce.
@@ -24458,6 +24489,10 @@ declare namespace SageMaker {
24458
24489
  * Configures SNS notifications of available or expiring work items for work teams.
24459
24490
  */
24460
24491
  NotificationConfiguration?: NotificationConfiguration;
24492
+ /**
24493
+ * Describes any access constraints that have been defined for Amazon S3 resources.
24494
+ */
24495
+ WorkerAccessConfiguration?: WorkerAccessConfiguration;
24461
24496
  }
24462
24497
  export type WorkteamArn = string;
24463
24498
  export type WorkteamName = string;
@@ -395,7 +395,7 @@ declare namespace SecretsManager {
395
395
  */
396
396
  KmsKeyId?: KmsKeyIdType;
397
397
  /**
398
- * Specifies whether automatic rotation is turned on for this secret. To turn on rotation, use RotateSecret. To turn off rotation, use CancelRotateSecret.
398
+ * Specifies whether automatic rotation is turned on for this secret. If the secret has never been configured for rotation, Secrets Manager returns null. To turn on rotation, use RotateSecret. To turn off rotation, use CancelRotateSecret.
399
399
  */
400
400
  RotationEnabled?: RotationEnabledType;
401
401
  /**
@@ -536,7 +536,7 @@ declare namespace SecretsManager {
536
536
  }
537
537
  export interface GetSecretValueRequest {
538
538
  /**
539
- * The ARN or name of the secret to retrieve. For an ARN, we recommend that you specify a complete ARN rather than a partial ARN. See Finding a secret from a partial ARN.
539
+ * The ARN or name of the secret to retrieve. To retrieve a secret from another account, you must use an ARN. For an ARN, we recommend that you specify a complete ARN rather than a partial ARN. See Finding a secret from a partial ARN.
540
540
  */
541
541
  SecretId: SecretIdType;
542
542
  /**
@@ -1130,7 +1130,7 @@ declare namespace SecretsManager {
1130
1130
  }
1131
1131
  export interface ValidateResourcePolicyRequest {
1132
1132
  /**
1133
- * This field is reserved for internal use.
1133
+ * The ARN or name of the secret with the resource-based policy you want to validate.
1134
1134
  */
1135
1135
  SecretId?: SecretIdType;
1136
1136
  /**
@@ -83,7 +83,7 @@ return /******/ (function(modules) { // webpackBootstrap
83
83
  /**
84
84
  * @constant
85
85
  */
86
- VERSION: '2.1621.0',
86
+ VERSION: '2.1622.0',
87
87
 
88
88
  /**
89
89
  * @api private