cdk-docker-image-deployment 0.0.174 → 0.0.176
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.
- package/.jsii +4 -4
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +6 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +2 -1
- package/node_modules/aws-sdk/apis/connectcases-2022-10-03.min.json +31 -7
- package/node_modules/aws-sdk/apis/securityhub-2018-10-26.min.json +758 -432
- package/node_modules/aws-sdk/apis/securityhub-2018-10-26.paginators.json +12 -0
- package/node_modules/aws-sdk/clients/connect.d.ts +4 -0
- package/node_modules/aws-sdk/clients/connectcases.d.ts +22 -6
- package/node_modules/aws-sdk/clients/redshift.d.ts +9 -9
- package/node_modules/aws-sdk/clients/securityhub.d.ts +371 -7
- package/node_modules/aws-sdk/clients/servicecatalog.d.ts +10 -10
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +5 -5
- package/node_modules/aws-sdk/dist/aws-sdk.js +5 -4
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +77 -77
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +7 -7
|
@@ -43,6 +43,22 @@ declare class SecurityHub extends Service {
|
|
|
43
43
|
* Enables the standards specified by the provided StandardsArn. To obtain the ARN for a standard, use the DescribeStandards operation. For more information, see the Security Standards section of the Security Hub User Guide.
|
|
44
44
|
*/
|
|
45
45
|
batchEnableStandards(callback?: (err: AWSError, data: SecurityHub.Types.BatchEnableStandardsResponse) => void): Request<SecurityHub.Types.BatchEnableStandardsResponse, AWSError>;
|
|
46
|
+
/**
|
|
47
|
+
* Provides details about a batch of security controls for the current Amazon Web Services account and Amazon Web Services Region.
|
|
48
|
+
*/
|
|
49
|
+
batchGetSecurityControls(params: SecurityHub.Types.BatchGetSecurityControlsRequest, callback?: (err: AWSError, data: SecurityHub.Types.BatchGetSecurityControlsResponse) => void): Request<SecurityHub.Types.BatchGetSecurityControlsResponse, AWSError>;
|
|
50
|
+
/**
|
|
51
|
+
* Provides details about a batch of security controls for the current Amazon Web Services account and Amazon Web Services Region.
|
|
52
|
+
*/
|
|
53
|
+
batchGetSecurityControls(callback?: (err: AWSError, data: SecurityHub.Types.BatchGetSecurityControlsResponse) => void): Request<SecurityHub.Types.BatchGetSecurityControlsResponse, AWSError>;
|
|
54
|
+
/**
|
|
55
|
+
* For a batch of security controls and standards, identifies whether each control is currently enabled or disabled in a standard.
|
|
56
|
+
*/
|
|
57
|
+
batchGetStandardsControlAssociations(params: SecurityHub.Types.BatchGetStandardsControlAssociationsRequest, callback?: (err: AWSError, data: SecurityHub.Types.BatchGetStandardsControlAssociationsResponse) => void): Request<SecurityHub.Types.BatchGetStandardsControlAssociationsResponse, AWSError>;
|
|
58
|
+
/**
|
|
59
|
+
* For a batch of security controls and standards, identifies whether each control is currently enabled or disabled in a standard.
|
|
60
|
+
*/
|
|
61
|
+
batchGetStandardsControlAssociations(callback?: (err: AWSError, data: SecurityHub.Types.BatchGetStandardsControlAssociationsResponse) => void): Request<SecurityHub.Types.BatchGetStandardsControlAssociationsResponse, AWSError>;
|
|
46
62
|
/**
|
|
47
63
|
* Imports security findings generated by a finding provider into Security Hub. This action is requested by the finding provider to import its findings into Security Hub. BatchImportFindings must be called by one of the following: The Amazon Web Services account that is associated with a finding if you are using the default product ARN or are a partner sending findings from within a customer's Amazon Web Services account. In these cases, the identifier of the account that you are calling BatchImportFindings from needs to be the same as the AwsAccountId attribute for the finding. An Amazon Web Services account that Security Hub has allow-listed for an official partner integration. In this case, you can call BatchImportFindings from the allow-listed account and send findings from different customer accounts in the same batch. The maximum allowed size for a finding is 240 Kb. An error is returned for any finding larger than 240 Kb. After a finding is created, BatchImportFindings cannot be used to update the following finding fields and objects, which Security Hub customers use to manage their investigation workflow. Note UserDefinedFields VerificationState Workflow Finding providers also should not use BatchImportFindings to update the following attributes. Confidence Criticality RelatedFindings Severity Types Instead, finding providers use FindingProviderFields to provide values for these attributes.
|
|
48
64
|
*/
|
|
@@ -59,6 +75,14 @@ declare class SecurityHub extends Service {
|
|
|
59
75
|
* Used by Security Hub customers to update information about their investigation into a finding. Requested by administrator accounts or member accounts. Administrator accounts can update findings for their account and their member accounts. Member accounts can update findings for their account. Updates from BatchUpdateFindings do not affect the value of UpdatedAt for a finding. Administrator and member accounts can use BatchUpdateFindings to update the following finding fields and objects. Confidence Criticality Note RelatedFindings Severity Types UserDefinedFields VerificationState Workflow You can configure IAM policies to restrict access to fields and field values. For example, you might not want member accounts to be able to suppress findings or change the finding severity. See Configuring access to BatchUpdateFindings in the Security Hub User Guide.
|
|
60
76
|
*/
|
|
61
77
|
batchUpdateFindings(callback?: (err: AWSError, data: SecurityHub.Types.BatchUpdateFindingsResponse) => void): Request<SecurityHub.Types.BatchUpdateFindingsResponse, AWSError>;
|
|
78
|
+
/**
|
|
79
|
+
* For a batch of security controls and standards, this operation updates the enablement status of a control in a standard.
|
|
80
|
+
*/
|
|
81
|
+
batchUpdateStandardsControlAssociations(params: SecurityHub.Types.BatchUpdateStandardsControlAssociationsRequest, callback?: (err: AWSError, data: SecurityHub.Types.BatchUpdateStandardsControlAssociationsResponse) => void): Request<SecurityHub.Types.BatchUpdateStandardsControlAssociationsResponse, AWSError>;
|
|
82
|
+
/**
|
|
83
|
+
* For a batch of security controls and standards, this operation updates the enablement status of a control in a standard.
|
|
84
|
+
*/
|
|
85
|
+
batchUpdateStandardsControlAssociations(callback?: (err: AWSError, data: SecurityHub.Types.BatchUpdateStandardsControlAssociationsResponse) => void): Request<SecurityHub.Types.BatchUpdateStandardsControlAssociationsResponse, AWSError>;
|
|
62
86
|
/**
|
|
63
87
|
* Creates a custom action target in Security Hub. You can use custom actions on findings and insights in Security Hub to trigger target actions in Amazon CloudWatch Events.
|
|
64
88
|
*/
|
|
@@ -379,6 +403,22 @@ declare class SecurityHub extends Service {
|
|
|
379
403
|
* Lists the Security Hub administrator accounts. Can only be called by the organization management account.
|
|
380
404
|
*/
|
|
381
405
|
listOrganizationAdminAccounts(callback?: (err: AWSError, data: SecurityHub.Types.ListOrganizationAdminAccountsResponse) => void): Request<SecurityHub.Types.ListOrganizationAdminAccountsResponse, AWSError>;
|
|
406
|
+
/**
|
|
407
|
+
* Lists all of the security controls that apply to a specified standard.
|
|
408
|
+
*/
|
|
409
|
+
listSecurityControlDefinitions(params: SecurityHub.Types.ListSecurityControlDefinitionsRequest, callback?: (err: AWSError, data: SecurityHub.Types.ListSecurityControlDefinitionsResponse) => void): Request<SecurityHub.Types.ListSecurityControlDefinitionsResponse, AWSError>;
|
|
410
|
+
/**
|
|
411
|
+
* Lists all of the security controls that apply to a specified standard.
|
|
412
|
+
*/
|
|
413
|
+
listSecurityControlDefinitions(callback?: (err: AWSError, data: SecurityHub.Types.ListSecurityControlDefinitionsResponse) => void): Request<SecurityHub.Types.ListSecurityControlDefinitionsResponse, AWSError>;
|
|
414
|
+
/**
|
|
415
|
+
* Specifies whether a control is currently enabled or disabled in each enabled standard in the calling account.
|
|
416
|
+
*/
|
|
417
|
+
listStandardsControlAssociations(params: SecurityHub.Types.ListStandardsControlAssociationsRequest, callback?: (err: AWSError, data: SecurityHub.Types.ListStandardsControlAssociationsResponse) => void): Request<SecurityHub.Types.ListStandardsControlAssociationsResponse, AWSError>;
|
|
418
|
+
/**
|
|
419
|
+
* Specifies whether a control is currently enabled or disabled in each enabled standard in the calling account.
|
|
420
|
+
*/
|
|
421
|
+
listStandardsControlAssociations(callback?: (err: AWSError, data: SecurityHub.Types.ListStandardsControlAssociationsResponse) => void): Request<SecurityHub.Types.ListStandardsControlAssociationsResponse, AWSError>;
|
|
382
422
|
/**
|
|
383
423
|
* Returns a list of tags associated with a resource.
|
|
384
424
|
*/
|
|
@@ -615,6 +655,7 @@ declare namespace SecurityHub {
|
|
|
615
655
|
StandardsId?: NonEmptyString;
|
|
616
656
|
}
|
|
617
657
|
export type AssociatedStandardsList = AssociatedStandard[];
|
|
658
|
+
export type AssociationStatus = "ENABLED"|"DISABLED"|string;
|
|
618
659
|
export type AutoEnableStandards = "NONE"|"DEFAULT"|string;
|
|
619
660
|
export interface AvailabilityZone {
|
|
620
661
|
/**
|
|
@@ -1378,7 +1419,7 @@ declare namespace SecurityHub {
|
|
|
1378
1419
|
*/
|
|
1379
1420
|
BackupVaultEvents?: NonEmptyStringList;
|
|
1380
1421
|
/**
|
|
1381
|
-
*
|
|
1422
|
+
* The Amazon Resource Name (ARN) that uniquely identifies the Amazon SNS topic for a backup vault's events.
|
|
1382
1423
|
*/
|
|
1383
1424
|
SnsTopicArn?: NonEmptyString;
|
|
1384
1425
|
}
|
|
@@ -3153,7 +3194,7 @@ declare namespace SecurityHub {
|
|
|
3153
3194
|
*/
|
|
3154
3195
|
NetworkInterfaceCount?: AwsEc2LaunchTemplateDataInstanceRequirementsNetworkInterfaceCountDetails;
|
|
3155
3196
|
/**
|
|
3156
|
-
* The price protection threshold for On-Demand Instances. This is the maximum you
|
|
3197
|
+
* The price protection threshold for On-Demand Instances. This is the maximum you'll pay for an On-Demand Instance, expressed as a percentage above the least expensive current generation M, C, or R instance type with your specified attributes. When Amazon EC2 selects instance types with your attributes, it excludes instance types priced above your threshold. The parameter accepts an integer, which Amazon EC2 interprets as a percentage. A high value, such as 999999, turns off price protection.
|
|
3157
3198
|
*/
|
|
3158
3199
|
OnDemandMaxPricePercentageOverLowestPrice?: Integer;
|
|
3159
3200
|
/**
|
|
@@ -3161,7 +3202,7 @@ declare namespace SecurityHub {
|
|
|
3161
3202
|
*/
|
|
3162
3203
|
RequireHibernateSupport?: Boolean;
|
|
3163
3204
|
/**
|
|
3164
|
-
* The price protection threshold for Spot Instances. This is the maximum you
|
|
3205
|
+
* The price protection threshold for Spot Instances. This is the maximum you'll pay for a Spot Instance, expressed as a percentage above the least expensive current generation M, C, or R instance type with your specified attributes. When Amazon EC2 selects instance types with your attributes, it excludes instance types priced above your threshold. The parameter accepts an integer, which Amazon EC2 interprets as a percentage. A high value, such as 999999, turns off price protection.
|
|
3165
3206
|
*/
|
|
3166
3207
|
SpotMaxPricePercentageOverLowestPrice?: Integer;
|
|
3167
3208
|
/**
|
|
@@ -3238,7 +3279,7 @@ declare namespace SecurityHub {
|
|
|
3238
3279
|
}
|
|
3239
3280
|
export interface AwsEc2LaunchTemplateDataMetadataOptionsDetails {
|
|
3240
3281
|
/**
|
|
3241
|
-
* Enables or disables the HTTP metadata endpoint on your instances. If the parameter is not specified, the default state is enabled, and you won
|
|
3282
|
+
* Enables or disables the HTTP metadata endpoint on your instances. If the parameter is not specified, the default state is enabled, and you won't be able to access your instance metadata.
|
|
3242
3283
|
*/
|
|
3243
3284
|
HttpEndpoint?: NonEmptyString;
|
|
3244
3285
|
/**
|
|
@@ -7929,7 +7970,7 @@ declare namespace SecurityHub {
|
|
|
7929
7970
|
*/
|
|
7930
7971
|
DestinationRegion?: NonEmptyString;
|
|
7931
7972
|
/**
|
|
7932
|
-
* The number of days that manual snapshots are retained in the destination
|
|
7973
|
+
* The number of days that manual snapshots are retained in the destination Region after they are copied from a source Region. If the value is -1, then the manual snapshot is retained indefinitely. Valid values: Either -1 or an integer between 1 and 3,653
|
|
7933
7974
|
*/
|
|
7934
7975
|
ManualSnapshotRetentionPeriod?: Integer;
|
|
7935
7976
|
/**
|
|
@@ -10139,6 +10180,38 @@ declare namespace SecurityHub {
|
|
|
10139
10180
|
*/
|
|
10140
10181
|
StandardsSubscriptions?: StandardsSubscriptions;
|
|
10141
10182
|
}
|
|
10183
|
+
export interface BatchGetSecurityControlsRequest {
|
|
10184
|
+
/**
|
|
10185
|
+
* A list of security controls (identified with SecurityControlId, SecurityControlArn, or a mix of both parameters). The security control ID or Amazon Resource Name (ARN) is the same across standards.
|
|
10186
|
+
*/
|
|
10187
|
+
SecurityControlIds: StringList;
|
|
10188
|
+
}
|
|
10189
|
+
export interface BatchGetSecurityControlsResponse {
|
|
10190
|
+
/**
|
|
10191
|
+
* An array that returns the identifier, Amazon Resource Name (ARN), and other details about a security control. The same information is returned whether the request includes SecurityControlId or SecurityControlArn.
|
|
10192
|
+
*/
|
|
10193
|
+
SecurityControls: SecurityControls;
|
|
10194
|
+
/**
|
|
10195
|
+
* A security control (identified with SecurityControlId, SecurityControlArn, or a mix of both parameters) for which details cannot be returned.
|
|
10196
|
+
*/
|
|
10197
|
+
UnprocessedIds?: UnprocessedSecurityControls;
|
|
10198
|
+
}
|
|
10199
|
+
export interface BatchGetStandardsControlAssociationsRequest {
|
|
10200
|
+
/**
|
|
10201
|
+
* An array with one or more objects that includes a security control (identified with SecurityControlId, SecurityControlArn, or a mix of both parameters) and the Amazon Resource Name (ARN) of a standard. This field is used to query the enablement status of a control in a specified standard. The security control ID or ARN is the same across standards.
|
|
10202
|
+
*/
|
|
10203
|
+
StandardsControlAssociationIds: StandardsControlAssociationIds;
|
|
10204
|
+
}
|
|
10205
|
+
export interface BatchGetStandardsControlAssociationsResponse {
|
|
10206
|
+
/**
|
|
10207
|
+
* Provides the enablement status of a security control in a specified standard and other details for the control in relation to the specified standard.
|
|
10208
|
+
*/
|
|
10209
|
+
StandardsControlAssociationDetails: StandardsControlAssociationDetails;
|
|
10210
|
+
/**
|
|
10211
|
+
* A security control (identified with SecurityControlId, SecurityControlArn, or a mix of both parameters) whose enablement status in a specified standard cannot be returned.
|
|
10212
|
+
*/
|
|
10213
|
+
UnprocessedAssociations?: UnprocessedStandardsControlAssociations;
|
|
10214
|
+
}
|
|
10142
10215
|
export interface BatchImportFindingsRequest {
|
|
10143
10216
|
/**
|
|
10144
10217
|
* A list of findings to import. To successfully import a finding, it must follow the Amazon Web Services Security Finding Format. Maximum of 100 findings per request.
|
|
@@ -10224,6 +10297,18 @@ declare namespace SecurityHub {
|
|
|
10224
10297
|
ErrorMessage: NonEmptyString;
|
|
10225
10298
|
}
|
|
10226
10299
|
export type BatchUpdateFindingsUnprocessedFindingsList = BatchUpdateFindingsUnprocessedFinding[];
|
|
10300
|
+
export interface BatchUpdateStandardsControlAssociationsRequest {
|
|
10301
|
+
/**
|
|
10302
|
+
* Updates the enablement status of a security control in a specified standard.
|
|
10303
|
+
*/
|
|
10304
|
+
StandardsControlAssociationUpdates: StandardsControlAssociationUpdates;
|
|
10305
|
+
}
|
|
10306
|
+
export interface BatchUpdateStandardsControlAssociationsResponse {
|
|
10307
|
+
/**
|
|
10308
|
+
* A security control (identified with SecurityControlId, SecurityControlArn, or a mix of both parameters) whose enablement status in a specified standard couldn't be updated.
|
|
10309
|
+
*/
|
|
10310
|
+
UnprocessedAssociationUpdates?: UnprocessedStandardsControlAssociationUpdates;
|
|
10311
|
+
}
|
|
10227
10312
|
export type Boolean = boolean;
|
|
10228
10313
|
export interface BooleanFilter {
|
|
10229
10314
|
/**
|
|
@@ -10362,6 +10447,7 @@ declare namespace SecurityHub {
|
|
|
10362
10447
|
*/
|
|
10363
10448
|
Privileged?: Boolean;
|
|
10364
10449
|
}
|
|
10450
|
+
export type ControlFindingGenerator = "STANDARD_CONTROL"|"SECURITY_CONTROL"|string;
|
|
10365
10451
|
export type ControlStatus = "ENABLED"|"DISABLED"|string;
|
|
10366
10452
|
export interface Country {
|
|
10367
10453
|
/**
|
|
@@ -10389,7 +10475,7 @@ declare namespace SecurityHub {
|
|
|
10389
10475
|
}
|
|
10390
10476
|
export interface CreateActionTargetResponse {
|
|
10391
10477
|
/**
|
|
10392
|
-
* The ARN for the custom action target.
|
|
10478
|
+
* The Amazon Resource Name (ARN) for the custom action target.
|
|
10393
10479
|
*/
|
|
10394
10480
|
ActionTargetArn: NonEmptyString;
|
|
10395
10481
|
}
|
|
@@ -10556,7 +10642,7 @@ declare namespace SecurityHub {
|
|
|
10556
10642
|
}
|
|
10557
10643
|
export interface DeleteActionTargetRequest {
|
|
10558
10644
|
/**
|
|
10559
|
-
* The ARN of the custom action target to delete.
|
|
10645
|
+
* The Amazon Resource Name (ARN) of the custom action target to delete.
|
|
10560
10646
|
*/
|
|
10561
10647
|
ActionTargetArn: NonEmptyString;
|
|
10562
10648
|
}
|
|
@@ -10653,6 +10739,10 @@ declare namespace SecurityHub {
|
|
|
10653
10739
|
* Whether to automatically enable new controls when they are added to standards that are enabled. If set to true, then new controls for enabled standards are enabled automatically. If set to false, then new controls are not enabled.
|
|
10654
10740
|
*/
|
|
10655
10741
|
AutoEnableControls?: Boolean;
|
|
10742
|
+
/**
|
|
10743
|
+
* Specifies whether the calling account has consolidated control findings turned on. If the value for this field is set to SECURITY_CONTROL, Security Hub generates a single finding for a control check even when the check applies to multiple enabled standards. If the value for this field is set to STANDARD_CONTROL, Security Hub generates separate findings for a control check when the check applies to multiple enabled standards. The value for this field in a member account matches the value in the administrator account. For accounts that aren't part of an organization, the default value of this field is SECURITY_CONTROL if you enabled Security Hub on or after February 9, 2023.
|
|
10744
|
+
*/
|
|
10745
|
+
ControlFindingGenerator?: ControlFindingGenerator;
|
|
10656
10746
|
}
|
|
10657
10747
|
export interface DescribeOrganizationConfigurationRequest {
|
|
10658
10748
|
}
|
|
@@ -10818,6 +10908,10 @@ declare namespace SecurityHub {
|
|
|
10818
10908
|
* Whether to enable the security standards that Security Hub has designated as automatically enabled. If you do not provide a value for EnableDefaultStandards, it is set to true. To not enable the automatically enabled standards, set EnableDefaultStandards to false.
|
|
10819
10909
|
*/
|
|
10820
10910
|
EnableDefaultStandards?: Boolean;
|
|
10911
|
+
/**
|
|
10912
|
+
* This field, used when enabling Security Hub, specifies whether the calling account has consolidated control findings turned on. If the value for this field is set to SECURITY_CONTROL, Security Hub generates a single finding for a control check even when the check applies to multiple enabled standards. If the value for this field is set to STANDARD_CONTROL, Security Hub generates separate findings for a control check when the check applies to multiple enabled standards. The value for this field in a member account matches the value in the administrator account. For accounts that aren't part of an organization, the default value of this field is SECURITY_CONTROL if you enabled Security Hub on or after February 9, 2023.
|
|
10913
|
+
*/
|
|
10914
|
+
ControlFindingGenerator?: ControlFindingGenerator;
|
|
10821
10915
|
}
|
|
10822
10916
|
export interface EnableSecurityHubResponse {
|
|
10823
10917
|
}
|
|
@@ -11345,6 +11439,54 @@ declare namespace SecurityHub {
|
|
|
11345
11439
|
*/
|
|
11346
11440
|
NextToken?: NextToken;
|
|
11347
11441
|
}
|
|
11442
|
+
export interface ListSecurityControlDefinitionsRequest {
|
|
11443
|
+
/**
|
|
11444
|
+
* The Amazon Resource Name (ARN) of the standard that you want to view controls for.
|
|
11445
|
+
*/
|
|
11446
|
+
StandardsArn?: NonEmptyString;
|
|
11447
|
+
/**
|
|
11448
|
+
* Optional pagination parameter.
|
|
11449
|
+
*/
|
|
11450
|
+
NextToken?: NextToken;
|
|
11451
|
+
/**
|
|
11452
|
+
* An optional parameter that limits the total results of the API response to the specified number. If this parameter isn't provided in the request, the results include the first 25 security controls that apply to the specified standard. The results also include a NextToken parameter that you can use in a subsequent API call to get the next 25 controls. This repeats until all controls for the standard are returned.
|
|
11453
|
+
*/
|
|
11454
|
+
MaxResults?: MaxResults;
|
|
11455
|
+
}
|
|
11456
|
+
export interface ListSecurityControlDefinitionsResponse {
|
|
11457
|
+
/**
|
|
11458
|
+
* An array of controls that apply to the specified standard.
|
|
11459
|
+
*/
|
|
11460
|
+
SecurityControlDefinitions: SecurityControlDefinitions;
|
|
11461
|
+
/**
|
|
11462
|
+
* A pagination parameter that's included in the response only if it was included in the request.
|
|
11463
|
+
*/
|
|
11464
|
+
NextToken?: NextToken;
|
|
11465
|
+
}
|
|
11466
|
+
export interface ListStandardsControlAssociationsRequest {
|
|
11467
|
+
/**
|
|
11468
|
+
* The identifier of the control (identified with SecurityControlId, SecurityControlArn, or a mix of both parameters) that you want to determine the enablement status of in each enabled standard.
|
|
11469
|
+
*/
|
|
11470
|
+
SecurityControlId: NonEmptyString;
|
|
11471
|
+
/**
|
|
11472
|
+
* Optional pagination parameter.
|
|
11473
|
+
*/
|
|
11474
|
+
NextToken?: NextToken;
|
|
11475
|
+
/**
|
|
11476
|
+
* An optional parameter that limits the total results of the API response to the specified number. If this parameter isn't provided in the request, the results include the first 25 standard and control associations. The results also include a NextToken parameter that you can use in a subsequent API call to get the next 25 associations. This repeats until all associations for the specified control are returned. The number of results is limited by the number of supported Security Hub standards that you've enabled in the calling account.
|
|
11477
|
+
*/
|
|
11478
|
+
MaxResults?: MaxResults;
|
|
11479
|
+
}
|
|
11480
|
+
export interface ListStandardsControlAssociationsResponse {
|
|
11481
|
+
/**
|
|
11482
|
+
* An array that provides the enablement status and other details for each security control that applies to each enabled standard.
|
|
11483
|
+
*/
|
|
11484
|
+
StandardsControlAssociationSummaries: StandardsControlAssociationSummaries;
|
|
11485
|
+
/**
|
|
11486
|
+
* A pagination parameter that's included in the response only if it was included in the request.
|
|
11487
|
+
*/
|
|
11488
|
+
NextToken?: NextToken;
|
|
11489
|
+
}
|
|
11348
11490
|
export interface ListTagsForResourceRequest {
|
|
11349
11491
|
/**
|
|
11350
11492
|
* The ARN of the resource to retrieve tags for.
|
|
@@ -11833,6 +11975,7 @@ declare namespace SecurityHub {
|
|
|
11833
11975
|
}
|
|
11834
11976
|
export type RecordState = "ACTIVE"|"ARCHIVED"|string;
|
|
11835
11977
|
export type Records = Record[];
|
|
11978
|
+
export type RegionAvailabilityStatus = "AVAILABLE"|"UNAVAILABLE"|string;
|
|
11836
11979
|
export interface RelatedFinding {
|
|
11837
11980
|
/**
|
|
11838
11981
|
* The ARN of the product that generated a related finding.
|
|
@@ -12453,6 +12596,64 @@ declare namespace SecurityHub {
|
|
|
12453
12596
|
*/
|
|
12454
12597
|
Definition?: NonEmptyStringList;
|
|
12455
12598
|
}
|
|
12599
|
+
export interface SecurityControl {
|
|
12600
|
+
/**
|
|
12601
|
+
* The unique identifier of a security control across standards. Values for this field typically consist of an Amazon Web Service name and a number, such as APIGateway.3.
|
|
12602
|
+
*/
|
|
12603
|
+
SecurityControlId: NonEmptyString;
|
|
12604
|
+
/**
|
|
12605
|
+
* The Amazon Resource Name (ARN) for a security control across standards, such as arn:aws:securityhub:eu-central-1:123456789012:security-control/S3.1. This parameter doesn't mention a specific standard.
|
|
12606
|
+
*/
|
|
12607
|
+
SecurityControlArn: NonEmptyString;
|
|
12608
|
+
/**
|
|
12609
|
+
* The title of a security control.
|
|
12610
|
+
*/
|
|
12611
|
+
Title: NonEmptyString;
|
|
12612
|
+
/**
|
|
12613
|
+
* The description of a security control across standards. This typically summarizes how Security Hub evaluates the control and the conditions under which it produces a failed finding. This parameter doesn't reference a specific standard.
|
|
12614
|
+
*/
|
|
12615
|
+
Description: NonEmptyString;
|
|
12616
|
+
/**
|
|
12617
|
+
* A link to Security Hub documentation that explains how to remediate a failed finding for a security control.
|
|
12618
|
+
*/
|
|
12619
|
+
RemediationUrl: NonEmptyString;
|
|
12620
|
+
/**
|
|
12621
|
+
* The severity of a security control. For more information about how Security Hub determines control severity, see Assigning severity to control findings in the Security Hub User Guide.
|
|
12622
|
+
*/
|
|
12623
|
+
SeverityRating: SeverityRating;
|
|
12624
|
+
/**
|
|
12625
|
+
* The status of a security control based on the compliance status of its findings. For more information about how control status is determined, see Determining the overall status of a control from its findings in the Security Hub User Guide.
|
|
12626
|
+
*/
|
|
12627
|
+
SecurityControlStatus: ControlStatus;
|
|
12628
|
+
}
|
|
12629
|
+
export interface SecurityControlDefinition {
|
|
12630
|
+
/**
|
|
12631
|
+
* The unique identifier of a security control across standards. Values for this field typically consist of an Amazon Web Service name and a number (for example, APIGateway.3). This parameter differs from SecurityControlArn, which is a unique Amazon Resource Name (ARN) assigned to a control. The ARN references the security control ID (for example, arn:aws:securityhub:eu-central-1:123456789012:security-control/APIGateway.3).
|
|
12632
|
+
*/
|
|
12633
|
+
SecurityControlId: NonEmptyString;
|
|
12634
|
+
/**
|
|
12635
|
+
* The title of a security control.
|
|
12636
|
+
*/
|
|
12637
|
+
Title: NonEmptyString;
|
|
12638
|
+
/**
|
|
12639
|
+
* The description of a security control across standards. This typically summarizes how Security Hub evaluates the control and the conditions under which it produces a failed finding. This parameter doesn't reference a specific standard.
|
|
12640
|
+
*/
|
|
12641
|
+
Description: NonEmptyString;
|
|
12642
|
+
/**
|
|
12643
|
+
* A link to Security Hub documentation that explains how to remediate a failed finding for a security control.
|
|
12644
|
+
*/
|
|
12645
|
+
RemediationUrl: NonEmptyString;
|
|
12646
|
+
/**
|
|
12647
|
+
* The severity of a security control. For more information about how Security Hub determines control severity, see Assigning severity to control findings in the Security Hub User Guide.
|
|
12648
|
+
*/
|
|
12649
|
+
SeverityRating: SeverityRating;
|
|
12650
|
+
/**
|
|
12651
|
+
* Specifies whether a security control is available in the current Amazon Web Services Region.
|
|
12652
|
+
*/
|
|
12653
|
+
CurrentRegionAvailability: RegionAvailabilityStatus;
|
|
12654
|
+
}
|
|
12655
|
+
export type SecurityControlDefinitions = SecurityControlDefinition[];
|
|
12656
|
+
export type SecurityControls = SecurityControl[];
|
|
12456
12657
|
export type SecurityGroups = NonEmptyString[];
|
|
12457
12658
|
export interface SensitiveDataDetections {
|
|
12458
12659
|
/**
|
|
@@ -12643,6 +12844,119 @@ declare namespace SecurityHub {
|
|
|
12643
12844
|
*/
|
|
12644
12845
|
RelatedRequirements?: RelatedRequirementsList;
|
|
12645
12846
|
}
|
|
12847
|
+
export type StandardsControlArnList = NonEmptyString[];
|
|
12848
|
+
export interface StandardsControlAssociationDetail {
|
|
12849
|
+
/**
|
|
12850
|
+
* The Amazon Resource Name (ARN) of a security standard.
|
|
12851
|
+
*/
|
|
12852
|
+
StandardsArn: NonEmptyString;
|
|
12853
|
+
/**
|
|
12854
|
+
* The unique identifier of a security control across standards. Values for this field typically consist of an Amazon Web Service name and a number, such as APIGateway.3.
|
|
12855
|
+
*/
|
|
12856
|
+
SecurityControlId: NonEmptyString;
|
|
12857
|
+
/**
|
|
12858
|
+
* The ARN of a security control across standards, such as arn:aws:securityhub:eu-central-1:123456789012:security-control/S3.1. This parameter doesn't mention a specific standard.
|
|
12859
|
+
*/
|
|
12860
|
+
SecurityControlArn: NonEmptyString;
|
|
12861
|
+
/**
|
|
12862
|
+
* Specifies whether a control is enabled or disabled in a specified standard.
|
|
12863
|
+
*/
|
|
12864
|
+
AssociationStatus: AssociationStatus;
|
|
12865
|
+
/**
|
|
12866
|
+
* The requirement that underlies a control in the compliance framework related to the standard.
|
|
12867
|
+
*/
|
|
12868
|
+
RelatedRequirements?: RelatedRequirementsList;
|
|
12869
|
+
/**
|
|
12870
|
+
* The time at which the enablement status of the control in the specified standard was last updated.
|
|
12871
|
+
*/
|
|
12872
|
+
UpdatedAt?: Timestamp;
|
|
12873
|
+
/**
|
|
12874
|
+
* The reason for updating the enablement status of a control in a specified standard.
|
|
12875
|
+
*/
|
|
12876
|
+
UpdatedReason?: NonEmptyString;
|
|
12877
|
+
/**
|
|
12878
|
+
* The title of a control. This field may reference a specific standard.
|
|
12879
|
+
*/
|
|
12880
|
+
StandardsControlTitle?: NonEmptyString;
|
|
12881
|
+
/**
|
|
12882
|
+
* The description of a control. This typically summarizes how Security Hub evaluates the control and the conditions under which it produces a failed finding. This parameter may reference a specific standard.
|
|
12883
|
+
*/
|
|
12884
|
+
StandardsControlDescription?: NonEmptyString;
|
|
12885
|
+
/**
|
|
12886
|
+
* Provides the input parameter that Security Hub uses to call the UpdateStandardsControl API. This API can be used to enable or disable a control in a specified standard.
|
|
12887
|
+
*/
|
|
12888
|
+
StandardsControlArns?: StandardsControlArnList;
|
|
12889
|
+
}
|
|
12890
|
+
export type StandardsControlAssociationDetails = StandardsControlAssociationDetail[];
|
|
12891
|
+
export interface StandardsControlAssociationId {
|
|
12892
|
+
/**
|
|
12893
|
+
* The unique identifier (identified with SecurityControlId, SecurityControlArn, or a mix of both parameters) of a security control across standards.
|
|
12894
|
+
*/
|
|
12895
|
+
SecurityControlId: NonEmptyString;
|
|
12896
|
+
/**
|
|
12897
|
+
* The ARN of a standard.
|
|
12898
|
+
*/
|
|
12899
|
+
StandardsArn: NonEmptyString;
|
|
12900
|
+
}
|
|
12901
|
+
export type StandardsControlAssociationIds = StandardsControlAssociationId[];
|
|
12902
|
+
export type StandardsControlAssociationSummaries = StandardsControlAssociationSummary[];
|
|
12903
|
+
export interface StandardsControlAssociationSummary {
|
|
12904
|
+
/**
|
|
12905
|
+
* The Amazon Resource Name (ARN) of a standard.
|
|
12906
|
+
*/
|
|
12907
|
+
StandardsArn: NonEmptyString;
|
|
12908
|
+
/**
|
|
12909
|
+
* A unique standard-agnostic identifier for a control. Values for this field typically consist of an Amazon Web Service and a number, such as APIGateway.5. This field doesn't reference a specific standard.
|
|
12910
|
+
*/
|
|
12911
|
+
SecurityControlId: NonEmptyString;
|
|
12912
|
+
/**
|
|
12913
|
+
* The ARN of a control, such as arn:aws:securityhub:eu-central-1:123456789012:security-control/S3.1. This parameter doesn't mention a specific standard.
|
|
12914
|
+
*/
|
|
12915
|
+
SecurityControlArn: NonEmptyString;
|
|
12916
|
+
/**
|
|
12917
|
+
* The enablement status of a control in a specific standard.
|
|
12918
|
+
*/
|
|
12919
|
+
AssociationStatus: AssociationStatus;
|
|
12920
|
+
/**
|
|
12921
|
+
* The requirement that underlies this control in the compliance framework related to the standard.
|
|
12922
|
+
*/
|
|
12923
|
+
RelatedRequirements?: RelatedRequirementsList;
|
|
12924
|
+
/**
|
|
12925
|
+
* The last time that a control's enablement status in a specified standard was updated.
|
|
12926
|
+
*/
|
|
12927
|
+
UpdatedAt?: Timestamp;
|
|
12928
|
+
/**
|
|
12929
|
+
* The reason for updating the control's enablement status in a specified standard.
|
|
12930
|
+
*/
|
|
12931
|
+
UpdatedReason?: NonEmptyString;
|
|
12932
|
+
/**
|
|
12933
|
+
* The title of a control.
|
|
12934
|
+
*/
|
|
12935
|
+
StandardsControlTitle?: NonEmptyString;
|
|
12936
|
+
/**
|
|
12937
|
+
* The description of a control. This typically summarizes how Security Hub evaluates the control and the conditions under which it produces a failed finding. The parameter may reference a specific standard.
|
|
12938
|
+
*/
|
|
12939
|
+
StandardsControlDescription?: NonEmptyString;
|
|
12940
|
+
}
|
|
12941
|
+
export interface StandardsControlAssociationUpdate {
|
|
12942
|
+
/**
|
|
12943
|
+
* The Amazon Resource Name (ARN) of the standard in which you want to update the control's enablement status.
|
|
12944
|
+
*/
|
|
12945
|
+
StandardsArn: NonEmptyString;
|
|
12946
|
+
/**
|
|
12947
|
+
* The unique identifier for the security control whose enablement status you want to update.
|
|
12948
|
+
*/
|
|
12949
|
+
SecurityControlId: NonEmptyString;
|
|
12950
|
+
/**
|
|
12951
|
+
* The desired enablement status of the control in the standard.
|
|
12952
|
+
*/
|
|
12953
|
+
AssociationStatus: AssociationStatus;
|
|
12954
|
+
/**
|
|
12955
|
+
* The reason for updating the control's enablement status in the standard.
|
|
12956
|
+
*/
|
|
12957
|
+
UpdatedReason?: NonEmptyString;
|
|
12958
|
+
}
|
|
12959
|
+
export type StandardsControlAssociationUpdates = StandardsControlAssociationUpdate[];
|
|
12646
12960
|
export type StandardsControls = StandardsControl[];
|
|
12647
12961
|
export type StandardsInputParameterMap = {[key: string]: NonEmptyString};
|
|
12648
12962
|
export interface StandardsManagedBy {
|
|
@@ -12807,6 +13121,52 @@ declare namespace SecurityHub {
|
|
|
12807
13121
|
export type ThreatList = Threat[];
|
|
12808
13122
|
export type Timestamp = Date;
|
|
12809
13123
|
export type TypeList = NonEmptyString[];
|
|
13124
|
+
export type UnprocessedErrorCode = "INVALID_INPUT"|"ACCESS_DENIED"|"NOT_FOUND"|"LIMIT_EXCEEDED"|string;
|
|
13125
|
+
export interface UnprocessedSecurityControl {
|
|
13126
|
+
/**
|
|
13127
|
+
* The control (identified with SecurityControlId, SecurityControlArn, or a mix of both parameters) for which a response couldn't be returned.
|
|
13128
|
+
*/
|
|
13129
|
+
SecurityControlId: NonEmptyString;
|
|
13130
|
+
/**
|
|
13131
|
+
* The error code for the unprocessed security control.
|
|
13132
|
+
*/
|
|
13133
|
+
ErrorCode: UnprocessedErrorCode;
|
|
13134
|
+
/**
|
|
13135
|
+
* The reason why the security control was unprocessed.
|
|
13136
|
+
*/
|
|
13137
|
+
ErrorReason?: NonEmptyString;
|
|
13138
|
+
}
|
|
13139
|
+
export type UnprocessedSecurityControls = UnprocessedSecurityControl[];
|
|
13140
|
+
export interface UnprocessedStandardsControlAssociation {
|
|
13141
|
+
/**
|
|
13142
|
+
* An array with one or more objects that includes a security control (identified with SecurityControlId, SecurityControlArn, or a mix of both parameters) and the Amazon Resource Name (ARN) of a standard. This parameter shows the specific controls for which the enablement status couldn't be retrieved in specified standards when calling BatchUpdateStandardsControlAssociations.
|
|
13143
|
+
*/
|
|
13144
|
+
StandardsControlAssociationId: StandardsControlAssociationId;
|
|
13145
|
+
/**
|
|
13146
|
+
* The error code for the unprocessed standard and control association.
|
|
13147
|
+
*/
|
|
13148
|
+
ErrorCode: UnprocessedErrorCode;
|
|
13149
|
+
/**
|
|
13150
|
+
* The reason why the standard and control association was unprocessed.
|
|
13151
|
+
*/
|
|
13152
|
+
ErrorReason?: NonEmptyString;
|
|
13153
|
+
}
|
|
13154
|
+
export interface UnprocessedStandardsControlAssociationUpdate {
|
|
13155
|
+
/**
|
|
13156
|
+
* An array of control and standard associations for which an update failed when calling BatchUpdateStandardsControlAssociations.
|
|
13157
|
+
*/
|
|
13158
|
+
StandardsControlAssociationUpdate: StandardsControlAssociationUpdate;
|
|
13159
|
+
/**
|
|
13160
|
+
* The error code for the unprocessed update of the control's enablement status in the specified standard.
|
|
13161
|
+
*/
|
|
13162
|
+
ErrorCode: UnprocessedErrorCode;
|
|
13163
|
+
/**
|
|
13164
|
+
* The reason why a control's enablement status in the specified standard couldn't be updated.
|
|
13165
|
+
*/
|
|
13166
|
+
ErrorReason?: NonEmptyString;
|
|
13167
|
+
}
|
|
13168
|
+
export type UnprocessedStandardsControlAssociationUpdates = UnprocessedStandardsControlAssociationUpdate[];
|
|
13169
|
+
export type UnprocessedStandardsControlAssociations = UnprocessedStandardsControlAssociation[];
|
|
12810
13170
|
export interface UntagResourceRequest {
|
|
12811
13171
|
/**
|
|
12812
13172
|
* The ARN of the resource to remove the tags from.
|
|
@@ -12920,6 +13280,10 @@ declare namespace SecurityHub {
|
|
|
12920
13280
|
* Whether to automatically enable new controls when they are added to standards that are enabled. By default, this is set to true, and new controls are enabled automatically. To not automatically enable new controls, set this to false.
|
|
12921
13281
|
*/
|
|
12922
13282
|
AutoEnableControls?: Boolean;
|
|
13283
|
+
/**
|
|
13284
|
+
* Updates whether the calling account has consolidated control findings turned on. If the value for this field is set to SECURITY_CONTROL, Security Hub generates a single finding for a control check even when the check applies to multiple enabled standards. If the value for this field is set to STANDARD_CONTROL, Security Hub generates separate findings for a control check when the check applies to multiple enabled standards. For accounts that are part of an organization, this value can only be updated in the administrator account.
|
|
13285
|
+
*/
|
|
13286
|
+
ControlFindingGenerator?: ControlFindingGenerator;
|
|
12923
13287
|
}
|
|
12924
13288
|
export interface UpdateSecurityHubConfigurationResponse {
|
|
12925
13289
|
}
|
|
@@ -252,11 +252,11 @@ declare class ServiceCatalog extends Service {
|
|
|
252
252
|
*/
|
|
253
253
|
describePortfolioShares(callback?: (err: AWSError, data: ServiceCatalog.Types.DescribePortfolioSharesOutput) => void): Request<ServiceCatalog.Types.DescribePortfolioSharesOutput, AWSError>;
|
|
254
254
|
/**
|
|
255
|
-
* Gets information about the specified product.
|
|
255
|
+
* Gets information about the specified product. Running this operation with administrator access results in a failure. DescribeProductAsAdmin should be used instead.
|
|
256
256
|
*/
|
|
257
257
|
describeProduct(params: ServiceCatalog.Types.DescribeProductInput, callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeProductOutput) => void): Request<ServiceCatalog.Types.DescribeProductOutput, AWSError>;
|
|
258
258
|
/**
|
|
259
|
-
* Gets information about the specified product.
|
|
259
|
+
* Gets information about the specified product. Running this operation with administrator access results in a failure. DescribeProductAsAdmin should be used instead.
|
|
260
260
|
*/
|
|
261
261
|
describeProduct(callback?: (err: AWSError, data: ServiceCatalog.Types.DescribeProductOutput) => void): Request<ServiceCatalog.Types.DescribeProductOutput, AWSError>;
|
|
262
262
|
/**
|
|
@@ -428,11 +428,11 @@ declare class ServiceCatalog extends Service {
|
|
|
428
428
|
*/
|
|
429
429
|
getProvisionedProductOutputs(callback?: (err: AWSError, data: ServiceCatalog.Types.GetProvisionedProductOutputsOutput) => void): Request<ServiceCatalog.Types.GetProvisionedProductOutputsOutput, AWSError>;
|
|
430
430
|
/**
|
|
431
|
-
*
|
|
431
|
+
* Requests the import of a resource as an Service Catalog provisioned product that is associated to an Service Catalog product and provisioning artifact. Once imported, all supported governance actions are supported on the provisioned product. Resource import only supports CloudFormation stack ARNs. CloudFormation StackSets, and non-root nested stacks are not supported. The CloudFormation stack must have one of the following statuses to be imported: CREATE_COMPLETE, UPDATE_COMPLETE, UPDATE_ROLLBACK_COMPLETE, IMPORT_COMPLETE, and IMPORT_ROLLBACK_COMPLETE. Import of the resource requires that the CloudFormation stack template matches the associated Service Catalog product provisioning artifact. When you import an existing CloudFormation stack into a portfolio, constraints that are associated with the product aren't applied during the import process. The constraints are applied after you call UpdateProvisionedProduct for the provisioned product. The user or role that performs this operation must have the cloudformation:GetTemplate and cloudformation:DescribeStacks IAM policy permissions.
|
|
432
432
|
*/
|
|
433
433
|
importAsProvisionedProduct(params: ServiceCatalog.Types.ImportAsProvisionedProductInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ImportAsProvisionedProductOutput) => void): Request<ServiceCatalog.Types.ImportAsProvisionedProductOutput, AWSError>;
|
|
434
434
|
/**
|
|
435
|
-
*
|
|
435
|
+
* Requests the import of a resource as an Service Catalog provisioned product that is associated to an Service Catalog product and provisioning artifact. Once imported, all supported governance actions are supported on the provisioned product. Resource import only supports CloudFormation stack ARNs. CloudFormation StackSets, and non-root nested stacks are not supported. The CloudFormation stack must have one of the following statuses to be imported: CREATE_COMPLETE, UPDATE_COMPLETE, UPDATE_ROLLBACK_COMPLETE, IMPORT_COMPLETE, and IMPORT_ROLLBACK_COMPLETE. Import of the resource requires that the CloudFormation stack template matches the associated Service Catalog product provisioning artifact. When you import an existing CloudFormation stack into a portfolio, constraints that are associated with the product aren't applied during the import process. The constraints are applied after you call UpdateProvisionedProduct for the provisioned product. The user or role that performs this operation must have the cloudformation:GetTemplate and cloudformation:DescribeStacks IAM policy permissions.
|
|
436
436
|
*/
|
|
437
437
|
importAsProvisionedProduct(callback?: (err: AWSError, data: ServiceCatalog.Types.ImportAsProvisionedProductOutput) => void): Request<ServiceCatalog.Types.ImportAsProvisionedProductOutput, AWSError>;
|
|
438
438
|
/**
|
|
@@ -460,11 +460,11 @@ declare class ServiceCatalog extends Service {
|
|
|
460
460
|
*/
|
|
461
461
|
listConstraintsForPortfolio(callback?: (err: AWSError, data: ServiceCatalog.Types.ListConstraintsForPortfolioOutput) => void): Request<ServiceCatalog.Types.ListConstraintsForPortfolioOutput, AWSError>;
|
|
462
462
|
/**
|
|
463
|
-
*
|
|
463
|
+
* Lists the paths to the specified product. A path describes how the user gets access to a specified product and is necessary when provisioning a product. A path also determines the constraints that are put on a product. A path is dependent on a specific product, porfolio, and principal. When provisioning a product that's been added to a portfolio, you must grant your user, group, or role access to the portfolio. For more information, see Granting users access in the Service Catalog User Guide.
|
|
464
464
|
*/
|
|
465
465
|
listLaunchPaths(params: ServiceCatalog.Types.ListLaunchPathsInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ListLaunchPathsOutput) => void): Request<ServiceCatalog.Types.ListLaunchPathsOutput, AWSError>;
|
|
466
466
|
/**
|
|
467
|
-
*
|
|
467
|
+
* Lists the paths to the specified product. A path describes how the user gets access to a specified product and is necessary when provisioning a product. A path also determines the constraints that are put on a product. A path is dependent on a specific product, porfolio, and principal. When provisioning a product that's been added to a portfolio, you must grant your user, group, or role access to the portfolio. For more information, see Granting users access in the Service Catalog User Guide.
|
|
468
468
|
*/
|
|
469
469
|
listLaunchPaths(callback?: (err: AWSError, data: ServiceCatalog.Types.ListLaunchPathsOutput) => void): Request<ServiceCatalog.Types.ListLaunchPathsOutput, AWSError>;
|
|
470
470
|
/**
|
|
@@ -580,11 +580,11 @@ declare class ServiceCatalog extends Service {
|
|
|
580
580
|
*/
|
|
581
581
|
listTagOptions(callback?: (err: AWSError, data: ServiceCatalog.Types.ListTagOptionsOutput) => void): Request<ServiceCatalog.Types.ListTagOptionsOutput, AWSError>;
|
|
582
582
|
/**
|
|
583
|
-
*
|
|
583
|
+
* Provisions the specified product. A provisioned product is a resourced instance of a product. For example, provisioning a product that's based on an CloudFormation template launches an CloudFormation stack and its underlying resources. You can check the status of this request using DescribeRecord. If the request contains a tag key with an empty list of values, there's a tag conflict for that key. Don't include conflicted keys as tags, or this will cause the error "Parameter validation failed: Missing required parameter in Tags[N]:Value". When provisioning a product that's been added to a portfolio, you must grant your user, group, or role access to the portfolio. For more information, see Granting users access in the Service Catalog User Guide.
|
|
584
584
|
*/
|
|
585
585
|
provisionProduct(params: ServiceCatalog.Types.ProvisionProductInput, callback?: (err: AWSError, data: ServiceCatalog.Types.ProvisionProductOutput) => void): Request<ServiceCatalog.Types.ProvisionProductOutput, AWSError>;
|
|
586
586
|
/**
|
|
587
|
-
*
|
|
587
|
+
* Provisions the specified product. A provisioned product is a resourced instance of a product. For example, provisioning a product that's based on an CloudFormation template launches an CloudFormation stack and its underlying resources. You can check the status of this request using DescribeRecord. If the request contains a tag key with an empty list of values, there's a tag conflict for that key. Don't include conflicted keys as tags, or this will cause the error "Parameter validation failed: Missing required parameter in Tags[N]:Value". When provisioning a product that's been added to a portfolio, you must grant your user, group, or role access to the portfolio. For more information, see Granting users access in the Service Catalog User Guide.
|
|
588
588
|
*/
|
|
589
589
|
provisionProduct(callback?: (err: AWSError, data: ServiceCatalog.Types.ProvisionProductOutput) => void): Request<ServiceCatalog.Types.ProvisionProductOutput, AWSError>;
|
|
590
590
|
/**
|
|
@@ -620,11 +620,11 @@ declare class ServiceCatalog extends Service {
|
|
|
620
620
|
*/
|
|
621
621
|
searchProductsAsAdmin(callback?: (err: AWSError, data: ServiceCatalog.Types.SearchProductsAsAdminOutput) => void): Request<ServiceCatalog.Types.SearchProductsAsAdminOutput, AWSError>;
|
|
622
622
|
/**
|
|
623
|
-
* Gets information about the provisioned products that meet the specified criteria.
|
|
623
|
+
* Gets information about the provisioned products that meet the specified criteria.
|
|
624
624
|
*/
|
|
625
625
|
searchProvisionedProducts(params: ServiceCatalog.Types.SearchProvisionedProductsInput, callback?: (err: AWSError, data: ServiceCatalog.Types.SearchProvisionedProductsOutput) => void): Request<ServiceCatalog.Types.SearchProvisionedProductsOutput, AWSError>;
|
|
626
626
|
/**
|
|
627
|
-
* Gets information about the provisioned products that meet the specified criteria.
|
|
627
|
+
* Gets information about the provisioned products that meet the specified criteria.
|
|
628
628
|
*/
|
|
629
629
|
searchProvisionedProducts(callback?: (err: AWSError, data: ServiceCatalog.Types.SearchProvisionedProductsOutput) => void): Request<ServiceCatalog.Types.SearchProvisionedProductsOutput, AWSError>;
|
|
630
630
|
/**
|