cdk-comprehend-s3olap 2.0.49 → 2.0.50
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/cdk-comprehend-s3olap.js +2 -2
- package/lib/comprehend-lambdas.js +2 -2
- package/lib/iam-roles.js +4 -4
- package/node_modules/aws-sdk/CHANGELOG.md +11 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/chime-2018-05-01.min.json +116 -0
- package/node_modules/aws-sdk/apis/config-2014-11-12.min.json +67 -20
- package/node_modules/aws-sdk/apis/config-2014-11-12.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/globalaccelerator-2018-08-08.min.json +70 -53
- package/node_modules/aws-sdk/apis/marketplace-catalog-2018-09-17.min.json +3 -1
- package/node_modules/aws-sdk/apis/workspaces-2015-04-08.min.json +104 -66
- package/node_modules/aws-sdk/clients/chime.d.ts +135 -4
- package/node_modules/aws-sdk/clients/configservice.d.ts +66 -0
- package/node_modules/aws-sdk/clients/globalaccelerator.d.ts +109 -85
- package/node_modules/aws-sdk/clients/marketplacecatalog.d.ts +1 -1
- package/node_modules/aws-sdk/clients/polly.d.ts +1 -1
- package/node_modules/aws-sdk/clients/ssm.d.ts +12 -12
- package/node_modules/aws-sdk/clients/workspaces.d.ts +65 -5
- 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 +7 -7
- package/node_modules/aws-sdk/dist/aws-sdk.js +75 -23
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +72 -72
- package/node_modules/aws-sdk/dist-tools/service-collector.js +4 -6
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +6 -6
@@ -503,6 +503,14 @@ declare class ConfigService extends Service {
|
|
503
503
|
* Accepts a resource type and returns a list of resource identifiers that are aggregated for a specific resource type across accounts and regions. A resource identifier includes the resource type, ID, (if available) the custom resource name, source account, and source region. You can narrow the results to include only resources that have specific resource IDs, or a resource name, or source account ID, or source region. For example, if the input consists of accountID 12345678910 and the region is us-east-1 for resource type AWS::EC2::Instance then the API returns all the EC2 instance identifiers of accountID 12345678910 and region us-east-1.
|
504
504
|
*/
|
505
505
|
listAggregateDiscoveredResources(callback?: (err: AWSError, data: ConfigService.Types.ListAggregateDiscoveredResourcesResponse) => void): Request<ConfigService.Types.ListAggregateDiscoveredResourcesResponse, AWSError>;
|
506
|
+
/**
|
507
|
+
* Returns a list of conformance pack compliance scores. A compliance score is the percentage of the number of compliant rule-resource combinations in a conformance pack compared to the number of total possible rule-resource combinations in the conformance pack. This metric provides you with a high-level view of the compliance state of your conformance packs, and can be used to identify, investigate, and understand compliance deviations in your conformance packs.
|
508
|
+
*/
|
509
|
+
listConformancePackComplianceScores(params: ConfigService.Types.ListConformancePackComplianceScoresRequest, callback?: (err: AWSError, data: ConfigService.Types.ListConformancePackComplianceScoresResponse) => void): Request<ConfigService.Types.ListConformancePackComplianceScoresResponse, AWSError>;
|
510
|
+
/**
|
511
|
+
* Returns a list of conformance pack compliance scores. A compliance score is the percentage of the number of compliant rule-resource combinations in a conformance pack compared to the number of total possible rule-resource combinations in the conformance pack. This metric provides you with a high-level view of the compliance state of your conformance packs, and can be used to identify, investigate, and understand compliance deviations in your conformance packs.
|
512
|
+
*/
|
513
|
+
listConformancePackComplianceScores(callback?: (err: AWSError, data: ConfigService.Types.ListConformancePackComplianceScoresResponse) => void): Request<ConfigService.Types.ListConformancePackComplianceScoresResponse, AWSError>;
|
506
514
|
/**
|
507
515
|
* Accepts a resource type and returns a list of resource identifiers for the resources of that type. A resource identifier includes the resource type, ID, and (if available) the custom resource name. The results consist of resources that Config has discovered, including those that Config is not currently recording. You can narrow the results to include only resources that have specific resource IDs or a resource name. You can specify either resource IDs or a resource name, but not both, in the same request. The response is paginated. By default, Config lists 100 resource identifiers on each page. You can customize this number with the limit parameter. The response includes a nextToken string. To get the next page of results, run the request again and specify the string for the nextToken parameter.
|
508
516
|
*/
|
@@ -1108,6 +1116,7 @@ declare namespace ConfigService {
|
|
1108
1116
|
CapExceeded?: Boolean;
|
1109
1117
|
}
|
1110
1118
|
export type ComplianceResourceTypes = StringWithCharLimit256[];
|
1119
|
+
export type ComplianceScore = string;
|
1111
1120
|
export type ComplianceSummariesByResourceType = ComplianceSummaryByResourceType[];
|
1112
1121
|
export interface ComplianceSummary {
|
1113
1122
|
/**
|
@@ -1500,6 +1509,27 @@ declare namespace ConfigService {
|
|
1500
1509
|
ComplianceType?: ConformancePackComplianceType;
|
1501
1510
|
}
|
1502
1511
|
export type ConformancePackComplianceResourceIds = StringWithCharLimit256[];
|
1512
|
+
export interface ConformancePackComplianceScore {
|
1513
|
+
/**
|
1514
|
+
* Compliance score for the conformance pack.
|
1515
|
+
*/
|
1516
|
+
Score?: ComplianceScore;
|
1517
|
+
/**
|
1518
|
+
* The name of the conformance pack.
|
1519
|
+
*/
|
1520
|
+
ConformancePackName?: ConformancePackName;
|
1521
|
+
/**
|
1522
|
+
* The time that the conformance pack compliance score was last updated.
|
1523
|
+
*/
|
1524
|
+
LastUpdatedTime?: LastUpdatedTime;
|
1525
|
+
}
|
1526
|
+
export type ConformancePackComplianceScores = ConformancePackComplianceScore[];
|
1527
|
+
export interface ConformancePackComplianceScoresFilters {
|
1528
|
+
/**
|
1529
|
+
* The name of a conformance pack whose score should be included in the compliance score result.
|
1530
|
+
*/
|
1531
|
+
ConformancePackNames: ConformancePackNameFilter;
|
1532
|
+
}
|
1503
1533
|
export interface ConformancePackComplianceSummary {
|
1504
1534
|
/**
|
1505
1535
|
* The name of the conformance pack name.
|
@@ -1598,6 +1628,7 @@ declare namespace ConfigService {
|
|
1598
1628
|
}
|
1599
1629
|
export type ConformancePackInputParameters = ConformancePackInputParameter[];
|
1600
1630
|
export type ConformancePackName = string;
|
1631
|
+
export type ConformancePackNameFilter = ConformancePackName[];
|
1601
1632
|
export type ConformancePackNamesList = ConformancePackName[];
|
1602
1633
|
export type ConformancePackNamesToSummarizeList = ConformancePackName[];
|
1603
1634
|
export interface ConformancePackRuleCompliance {
|
@@ -3039,6 +3070,7 @@ declare namespace ConfigService {
|
|
3039
3070
|
export type GroupedResourceCountList = GroupedResourceCount[];
|
3040
3071
|
export type IncludeGlobalResourceTypes = boolean;
|
3041
3072
|
export type Integer = number;
|
3073
|
+
export type LastUpdatedTime = Date;
|
3042
3074
|
export type LaterTime = Date;
|
3043
3075
|
export type Limit = number;
|
3044
3076
|
export interface ListAggregateDiscoveredResourcesRequest {
|
@@ -3073,6 +3105,38 @@ declare namespace ConfigService {
|
|
3073
3105
|
*/
|
3074
3106
|
NextToken?: NextToken;
|
3075
3107
|
}
|
3108
|
+
export interface ListConformancePackComplianceScoresRequest {
|
3109
|
+
/**
|
3110
|
+
* Filters the results based on the ConformancePackComplianceScoresFilters.
|
3111
|
+
*/
|
3112
|
+
Filters?: ConformancePackComplianceScoresFilters;
|
3113
|
+
/**
|
3114
|
+
* Determines the order in which conformance pack compliance scores are sorted. Either in ascending or descending order.
|
3115
|
+
*/
|
3116
|
+
SortOrder?: SortOrder;
|
3117
|
+
/**
|
3118
|
+
* Sorts your conformance pack compliance scores in either ascending or descending order, depending on SortOrder.
|
3119
|
+
*/
|
3120
|
+
SortBy?: SortBy;
|
3121
|
+
/**
|
3122
|
+
* The maximum number of conformance pack compliance scores returned on each page.
|
3123
|
+
*/
|
3124
|
+
Limit?: PageSizeLimit;
|
3125
|
+
/**
|
3126
|
+
* The nextToken string in a prior request that you can use to get the paginated response for next set of conformance pack compliance scores.
|
3127
|
+
*/
|
3128
|
+
NextToken?: NextToken;
|
3129
|
+
}
|
3130
|
+
export interface ListConformancePackComplianceScoresResponse {
|
3131
|
+
/**
|
3132
|
+
* The nextToken string that you can use to get the next page of results in a paginated response.
|
3133
|
+
*/
|
3134
|
+
NextToken?: NextToken;
|
3135
|
+
/**
|
3136
|
+
* A list of ConformancePackComplianceScore objects
|
3137
|
+
*/
|
3138
|
+
ConformancePackComplianceScores: ConformancePackComplianceScores;
|
3139
|
+
}
|
3076
3140
|
export interface ListDiscoveredResourcesRequest {
|
3077
3141
|
/**
|
3078
3142
|
* The type of resources that you want Config to list in the response.
|
@@ -4199,6 +4263,8 @@ declare namespace ConfigService {
|
|
4199
4263
|
*/
|
4200
4264
|
NextToken?: NextToken;
|
4201
4265
|
}
|
4266
|
+
export type SortBy = "SCORE"|string;
|
4267
|
+
export type SortOrder = "ASCENDING"|"DESCENDING"|string;
|
4202
4268
|
export interface Source {
|
4203
4269
|
/**
|
4204
4270
|
* Indicates whether Amazon Web Services or the customer owns and manages the Config rule. Config Managed Rules are predefined rules owned by Amazon Web Services. For more information, see Config Managed Rules in the Config developer guide. Config Custom Rules are rules that you can develop either with Guard (CUSTOM_POLICY) or Lambda (CUSTOM_LAMBDA). For more information, see Config Custom Rules in the Config developer guide.
|