@awboost/cfntypes 1.0.0-beta.64 → 1.0.0-beta.66
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/lib/resources.generated/AWS-Amplify.d.ts +9 -0
- package/lib/resources.generated/AWS-ApiGateway.d.ts +12 -4
- package/lib/resources.generated/AWS-ApiGateway.js +1 -1
- package/lib/resources.generated/AWS-AppConfig.d.ts +13 -4
- package/lib/resources.generated/AWS-AppConfig.js +1 -1
- package/lib/resources.generated/AWS-AppIntegrations.d.ts +1 -1
- package/lib/resources.generated/AWS-AutoScaling.d.ts +66 -78
- package/lib/resources.generated/AWS-AutoScaling.js +2 -8
- package/lib/resources.generated/AWS-Cognito.d.ts +48 -1
- package/lib/resources.generated/AWS-Cognito.js +15 -2
- package/lib/resources.generated/AWS-Connect.d.ts +2 -0
- package/lib/resources.generated/AWS-CustomerProfiles.d.ts +118 -0
- package/lib/resources.generated/AWS-CustomerProfiles.js +10 -1
- package/lib/resources.generated/AWS-EC2.d.ts +49 -10
- package/lib/resources.generated/AWS-EC2.js +2 -2
- package/lib/resources.generated/AWS-EMR.d.ts +15 -7
- package/lib/resources.generated/AWS-EMR.js +3 -1
- package/lib/resources.generated/AWS-EntityResolution.d.ts +99 -0
- package/lib/resources.generated/AWS-EntityResolution.js +13 -0
- package/lib/resources.generated/AWS-Events.d.ts +33 -50
- package/lib/resources.generated/AWS-Events.js +1 -1
- package/lib/resources.generated/AWS-GameLift.d.ts +1 -0
- package/lib/resources.generated/AWS-IAM.d.ts +13 -13
- package/lib/resources.generated/AWS-IAM.js +1 -1
- package/lib/resources.generated/AWS-IoT.d.ts +11 -0
- package/lib/resources.generated/AWS-Kendra.d.ts +0 -9
- package/lib/resources.generated/AWS-Lambda.d.ts +23 -11
- package/lib/resources.generated/AWS-Lambda.js +1 -1
- package/lib/resources.generated/AWS-MSK.d.ts +93 -0
- package/lib/resources.generated/AWS-MSK.js +13 -0
- package/lib/resources.generated/AWS-NetworkManager.d.ts +3 -0
- package/lib/resources.generated/AWS-NetworkManager.js +1 -1
- package/lib/resources.generated/AWS-QuickSight.d.ts +129 -7
- package/lib/resources.generated/AWS-SNS.d.ts +1 -0
- package/lib/resources.generated/AWS-SageMaker.d.ts +6 -0
- package/lib/resources.generated/AWS-Transfer.d.ts +0 -112
- package/lib/resources.generated/AWS-Transfer.js +0 -13
- package/lib/resources.generated/AWS-WAFv2.d.ts +1 -0
- package/lib/resources.generated/Dev-Transfer.d.ts +123 -0
- package/lib/resources.generated/Dev-Transfer.js +14 -0
- package/package.json +2 -2
@@ -49,6 +49,14 @@ export interface AmplifyAppEnvironmentVariable {
|
|
49
49
|
Value: string;
|
50
50
|
Name: string;
|
51
51
|
}
|
52
|
+
/**
|
53
|
+
* Type definition for AWS::Amplify::Branch.Backend
|
54
|
+
*
|
55
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amplify-branch-backend.html | AWS::Amplify::Branch.Backend}
|
56
|
+
*/
|
57
|
+
export interface AmplifyBranchBackend {
|
58
|
+
StackArn?: string;
|
59
|
+
}
|
52
60
|
/**
|
53
61
|
* Type definition for AWS::Amplify::Branch.BasicAuthConfig
|
54
62
|
*
|
@@ -128,6 +136,7 @@ export declare class AmplifyApp extends ResourceBase<"AWS::Amplify::App", Amplif
|
|
128
136
|
export interface AmplifyBranchProps {
|
129
137
|
Description?: string;
|
130
138
|
EnablePerformanceMode?: boolean;
|
139
|
+
Backend?: AmplifyBranchBackend;
|
131
140
|
EnvironmentVariables?: any[];
|
132
141
|
AppId: string;
|
133
142
|
PullRequestEnvironmentName?: string;
|
@@ -503,20 +503,28 @@ export declare class ApiGatewayDomainName extends ResourceBase<"AWS::ApiGateway:
|
|
503
503
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html | AWS::ApiGateway::GatewayResponse}
|
504
504
|
*/
|
505
505
|
export interface ApiGatewayGatewayResponseProps {
|
506
|
-
ResponseParameters?: Record<string, any>;
|
507
506
|
ResponseTemplates?: Record<string, any>;
|
508
|
-
|
507
|
+
ResponseParameters?: Record<string, any>;
|
509
508
|
RestApiId: string;
|
510
509
|
StatusCode?: string;
|
510
|
+
ResponseType: string;
|
511
|
+
}
|
512
|
+
/**
|
513
|
+
* Attributes type definition for AWS::ApiGateway::GatewayResponse
|
514
|
+
*
|
515
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html | AWS::ApiGateway::GatewayResponse}
|
516
|
+
*/
|
517
|
+
export interface ApiGatewayGatewayResponseAttribs {
|
518
|
+
Id?: string;
|
511
519
|
}
|
512
520
|
/**
|
513
521
|
* Resource class for AWS::ApiGateway::GatewayResponse
|
514
522
|
*
|
515
523
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-gatewayresponse.html | AWS::ApiGateway::GatewayResponse}
|
516
524
|
*/
|
517
|
-
export declare class ApiGatewayGatewayResponse extends ResourceBase<"AWS::ApiGateway::GatewayResponse", ApiGatewayGatewayResponseProps,
|
525
|
+
export declare class ApiGatewayGatewayResponse extends ResourceBase<"AWS::ApiGateway::GatewayResponse", ApiGatewayGatewayResponseProps, ApiGatewayGatewayResponseAttribs> {
|
518
526
|
static readonly Type = "AWS::ApiGateway::GatewayResponse";
|
519
|
-
static readonly AttributeNames:
|
527
|
+
static readonly AttributeNames: readonly (keyof ApiGatewayGatewayResponseAttribs)[];
|
520
528
|
constructor(logicalId: string, properties: ApiGatewayGatewayResponseProps, options?: ResourceOptions);
|
521
529
|
}
|
522
530
|
/**
|
@@ -132,7 +132,7 @@ class ApiGatewayGatewayResponse extends ResourceBase {
|
|
132
132
|
}
|
133
133
|
}
|
134
134
|
ApiGatewayGatewayResponse.Type = "AWS::ApiGateway::GatewayResponse";
|
135
|
-
ApiGatewayGatewayResponse.AttributeNames = [];
|
135
|
+
ApiGatewayGatewayResponse.AttributeNames = ["Id"];
|
136
136
|
export { ApiGatewayGatewayResponse };
|
137
137
|
/**
|
138
138
|
* Resource class for AWS::ApiGateway::Method
|
@@ -7,8 +7,8 @@ import { Tag } from "./core.js";
|
|
7
7
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-application-tags.html | AWS::AppConfig::Application.Tags}
|
8
8
|
*/
|
9
9
|
export interface AppConfigApplicationTags {
|
10
|
-
Value
|
11
|
-
Key
|
10
|
+
Value: string;
|
11
|
+
Key: string;
|
12
12
|
}
|
13
13
|
/**
|
14
14
|
* Type definition for AWS::AppConfig::ConfigurationProfile.Tags
|
@@ -83,14 +83,22 @@ export interface AppConfigApplicationProps {
|
|
83
83
|
Tags?: Tag[];
|
84
84
|
Name: string;
|
85
85
|
}
|
86
|
+
/**
|
87
|
+
* Attributes type definition for AWS::AppConfig::Application
|
88
|
+
*
|
89
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html | AWS::AppConfig::Application}
|
90
|
+
*/
|
91
|
+
export interface AppConfigApplicationAttribs {
|
92
|
+
ApplicationId?: string;
|
93
|
+
}
|
86
94
|
/**
|
87
95
|
* Resource class for AWS::AppConfig::Application
|
88
96
|
*
|
89
97
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-application.html | AWS::AppConfig::Application}
|
90
98
|
*/
|
91
|
-
export declare class AppConfigApplication extends ResourceBase<"AWS::AppConfig::Application", AppConfigApplicationProps,
|
99
|
+
export declare class AppConfigApplication extends ResourceBase<"AWS::AppConfig::Application", AppConfigApplicationProps, AppConfigApplicationAttribs> {
|
92
100
|
static readonly Type = "AWS::AppConfig::Application";
|
93
|
-
static readonly AttributeNames:
|
101
|
+
static readonly AttributeNames: readonly (keyof AppConfigApplicationAttribs)[];
|
94
102
|
constructor(logicalId: string, properties: AppConfigApplicationProps, options?: ResourceOptions);
|
95
103
|
}
|
96
104
|
/**
|
@@ -101,6 +109,7 @@ export declare class AppConfigApplication extends ResourceBase<"AWS::AppConfig::
|
|
101
109
|
export interface AppConfigConfigurationProfileProps {
|
102
110
|
LocationUri: string;
|
103
111
|
Type?: string;
|
112
|
+
KmsKeyIdentifier?: string;
|
104
113
|
Description?: string;
|
105
114
|
Validators?: any[];
|
106
115
|
RetrievalRoleArn?: string;
|
@@ -10,7 +10,7 @@ class AppConfigApplication extends ResourceBase {
|
|
10
10
|
}
|
11
11
|
}
|
12
12
|
AppConfigApplication.Type = "AWS::AppConfig::Application";
|
13
|
-
AppConfigApplication.AttributeNames = [];
|
13
|
+
AppConfigApplication.AttributeNames = ["ApplicationId"];
|
14
14
|
export { AppConfigApplication };
|
15
15
|
/**
|
16
16
|
* Resource class for AWS::AppConfig::ConfigurationProfile
|
@@ -34,7 +34,7 @@ export interface AppIntegrationsEventIntegrationEventFilter {
|
|
34
34
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appintegrations-dataintegration.html | AWS::AppIntegrations::DataIntegration}
|
35
35
|
*/
|
36
36
|
export interface AppIntegrationsDataIntegrationProps {
|
37
|
-
ScheduleConfig
|
37
|
+
ScheduleConfig?: AppIntegrationsDataIntegrationScheduleConfig;
|
38
38
|
FileConfiguration?: AppIntegrationsDataIntegrationFileConfiguration;
|
39
39
|
Description?: string;
|
40
40
|
SourceURI: string;
|
@@ -7,8 +7,8 @@ import { Tag } from "./core.js";
|
|
7
7
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-acceleratorcountrequest.html | AWS::AutoScaling::AutoScalingGroup.AcceleratorCountRequest}
|
8
8
|
*/
|
9
9
|
export interface AutoScalingAutoScalingGroupAcceleratorCountRequest {
|
10
|
-
Max?: number;
|
11
10
|
Min?: number;
|
11
|
+
Max?: number;
|
12
12
|
}
|
13
13
|
/**
|
14
14
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.AcceleratorTotalMemoryMiBRequest
|
@@ -16,8 +16,8 @@ export interface AutoScalingAutoScalingGroupAcceleratorCountRequest {
|
|
16
16
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-acceleratortotalmemorymibrequest.html | AWS::AutoScaling::AutoScalingGroup.AcceleratorTotalMemoryMiBRequest}
|
17
17
|
*/
|
18
18
|
export interface AutoScalingAutoScalingGroupAcceleratorTotalMemoryMiBRequest {
|
19
|
-
Max?: number;
|
20
19
|
Min?: number;
|
20
|
+
Max?: number;
|
21
21
|
}
|
22
22
|
/**
|
23
23
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.BaselineEbsBandwidthMbpsRequest
|
@@ -25,56 +25,56 @@ export interface AutoScalingAutoScalingGroupAcceleratorTotalMemoryMiBRequest {
|
|
25
25
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-baselineebsbandwidthmbpsrequest.html | AWS::AutoScaling::AutoScalingGroup.BaselineEbsBandwidthMbpsRequest}
|
26
26
|
*/
|
27
27
|
export interface AutoScalingAutoScalingGroupBaselineEbsBandwidthMbpsRequest {
|
28
|
-
Max?: number;
|
29
28
|
Min?: number;
|
29
|
+
Max?: number;
|
30
30
|
}
|
31
31
|
/**
|
32
32
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.InstanceRequirements
|
33
33
|
*
|
34
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
34
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-instancerequirements.html | AWS::AutoScaling::AutoScalingGroup.InstanceRequirements}
|
35
35
|
*/
|
36
36
|
export interface AutoScalingAutoScalingGroupInstanceRequirements {
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
AcceleratorTotalMemoryMiB?: AutoScalingAutoScalingGroupAcceleratorTotalMemoryMiBRequest;
|
37
|
+
LocalStorageTypes?: any[];
|
38
|
+
InstanceGenerations?: any[];
|
39
|
+
NetworkInterfaceCount?: AutoScalingAutoScalingGroupNetworkInterfaceCountRequest;
|
41
40
|
AcceleratorTypes?: any[];
|
42
|
-
|
43
|
-
|
44
|
-
BaselineEbsBandwidthMbps?: AutoScalingAutoScalingGroupBaselineEbsBandwidthMbpsRequest;
|
45
|
-
BurstablePerformance?: string;
|
46
|
-
CpuManufacturers?: any[];
|
41
|
+
MemoryGiBPerVCpu?: AutoScalingAutoScalingGroupMemoryGiBPerVCpuRequest;
|
42
|
+
AcceleratorManufacturers?: any[];
|
47
43
|
ExcludedInstanceTypes?: any[];
|
48
|
-
|
44
|
+
VCpuCount?: AutoScalingAutoScalingGroupVCpuCountRequest;
|
45
|
+
AllowedInstanceTypes?: any[];
|
49
46
|
LocalStorage?: string;
|
50
|
-
|
51
|
-
|
52
|
-
MemoryMiB?: AutoScalingAutoScalingGroupMemoryMiBRequest;
|
47
|
+
CpuManufacturers?: any[];
|
48
|
+
AcceleratorCount?: AutoScalingAutoScalingGroupAcceleratorCountRequest;
|
53
49
|
NetworkBandwidthGbps?: AutoScalingAutoScalingGroupNetworkBandwidthGbpsRequest;
|
54
|
-
|
55
|
-
OnDemandMaxPricePercentageOverLowestPrice?: number;
|
50
|
+
BareMetal?: string;
|
56
51
|
RequireHibernateSupport?: boolean;
|
52
|
+
BaselineEbsBandwidthMbps?: AutoScalingAutoScalingGroupBaselineEbsBandwidthMbpsRequest;
|
57
53
|
SpotMaxPricePercentageOverLowestPrice?: number;
|
54
|
+
AcceleratorNames?: any[];
|
55
|
+
AcceleratorTotalMemoryMiB?: AutoScalingAutoScalingGroupAcceleratorTotalMemoryMiBRequest;
|
56
|
+
OnDemandMaxPricePercentageOverLowestPrice?: number;
|
57
|
+
BurstablePerformance?: string;
|
58
|
+
MemoryMiB?: AutoScalingAutoScalingGroupMemoryMiBRequest;
|
58
59
|
TotalLocalStorageGB?: AutoScalingAutoScalingGroupTotalLocalStorageGBRequest;
|
59
|
-
VCpuCount?: AutoScalingAutoScalingGroupVCpuCountRequest;
|
60
60
|
}
|
61
61
|
/**
|
62
62
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.InstancesDistribution
|
63
63
|
*
|
64
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
64
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-instancesdistribution.html | AWS::AutoScaling::AutoScalingGroup.InstancesDistribution}
|
65
65
|
*/
|
66
66
|
export interface AutoScalingAutoScalingGroupInstancesDistribution {
|
67
67
|
OnDemandAllocationStrategy?: string;
|
68
68
|
OnDemandBaseCapacity?: number;
|
69
69
|
OnDemandPercentageAboveBaseCapacity?: number;
|
70
|
-
SpotAllocationStrategy?: string;
|
71
70
|
SpotInstancePools?: number;
|
71
|
+
SpotAllocationStrategy?: string;
|
72
72
|
SpotMaxPrice?: string;
|
73
73
|
}
|
74
74
|
/**
|
75
75
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.LaunchTemplate
|
76
76
|
*
|
77
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
77
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplate.html | AWS::AutoScaling::AutoScalingGroup.LaunchTemplate}
|
78
78
|
*/
|
79
79
|
export interface AutoScalingAutoScalingGroupLaunchTemplate {
|
80
80
|
LaunchTemplateSpecification: AutoScalingAutoScalingGroupLaunchTemplateSpecification;
|
@@ -83,13 +83,13 @@ export interface AutoScalingAutoScalingGroupLaunchTemplate {
|
|
83
83
|
/**
|
84
84
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.LaunchTemplateOverrides
|
85
85
|
*
|
86
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
86
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplateoverrides.html | AWS::AutoScaling::AutoScalingGroup.LaunchTemplateOverrides}
|
87
87
|
*/
|
88
88
|
export interface AutoScalingAutoScalingGroupLaunchTemplateOverrides {
|
89
|
-
InstanceRequirements?: AutoScalingAutoScalingGroupInstanceRequirements;
|
90
|
-
InstanceType?: string;
|
91
89
|
LaunchTemplateSpecification?: AutoScalingAutoScalingGroupLaunchTemplateSpecification;
|
92
90
|
WeightedCapacity?: string;
|
91
|
+
InstanceRequirements?: AutoScalingAutoScalingGroupInstanceRequirements;
|
92
|
+
InstanceType?: string;
|
93
93
|
}
|
94
94
|
/**
|
95
95
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.LaunchTemplateSpecification
|
@@ -97,9 +97,9 @@ export interface AutoScalingAutoScalingGroupLaunchTemplateOverrides {
|
|
97
97
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplatespecification.html | AWS::AutoScaling::AutoScalingGroup.LaunchTemplateSpecification}
|
98
98
|
*/
|
99
99
|
export interface AutoScalingAutoScalingGroupLaunchTemplateSpecification {
|
100
|
-
LaunchTemplateId?: string;
|
101
100
|
LaunchTemplateName?: string;
|
102
101
|
Version: string;
|
102
|
+
LaunchTemplateId?: string;
|
103
103
|
}
|
104
104
|
/**
|
105
105
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.LifecycleHookSpecification
|
@@ -107,11 +107,11 @@ export interface AutoScalingAutoScalingGroupLaunchTemplateSpecification {
|
|
107
107
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-lifecyclehookspecification.html | AWS::AutoScaling::AutoScalingGroup.LifecycleHookSpecification}
|
108
108
|
*/
|
109
109
|
export interface AutoScalingAutoScalingGroupLifecycleHookSpecification {
|
110
|
-
DefaultResult?: string;
|
111
|
-
HeartbeatTimeout?: number;
|
112
110
|
LifecycleHookName: string;
|
113
111
|
LifecycleTransition: string;
|
112
|
+
HeartbeatTimeout?: number;
|
114
113
|
NotificationMetadata?: string;
|
114
|
+
DefaultResult?: string;
|
115
115
|
NotificationTargetARN?: string;
|
116
116
|
RoleARN?: string;
|
117
117
|
}
|
@@ -121,8 +121,8 @@ export interface AutoScalingAutoScalingGroupLifecycleHookSpecification {
|
|
121
121
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-memorygibpervcpurequest.html | AWS::AutoScaling::AutoScalingGroup.MemoryGiBPerVCpuRequest}
|
122
122
|
*/
|
123
123
|
export interface AutoScalingAutoScalingGroupMemoryGiBPerVCpuRequest {
|
124
|
-
Max?: number;
|
125
124
|
Min?: number;
|
125
|
+
Max?: number;
|
126
126
|
}
|
127
127
|
/**
|
128
128
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.MemoryMiBRequest
|
@@ -130,22 +130,22 @@ export interface AutoScalingAutoScalingGroupMemoryGiBPerVCpuRequest {
|
|
130
130
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-memorymibrequest.html | AWS::AutoScaling::AutoScalingGroup.MemoryMiBRequest}
|
131
131
|
*/
|
132
132
|
export interface AutoScalingAutoScalingGroupMemoryMiBRequest {
|
133
|
-
Max?: number;
|
134
133
|
Min?: number;
|
134
|
+
Max?: number;
|
135
135
|
}
|
136
136
|
/**
|
137
137
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.MetricsCollection
|
138
138
|
*
|
139
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-
|
139
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-metricscollection.html | AWS::AutoScaling::AutoScalingGroup.MetricsCollection}
|
140
140
|
*/
|
141
141
|
export interface AutoScalingAutoScalingGroupMetricsCollection {
|
142
|
-
Granularity: string;
|
143
142
|
Metrics?: any[];
|
143
|
+
Granularity: string;
|
144
144
|
}
|
145
145
|
/**
|
146
146
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.MixedInstancesPolicy
|
147
147
|
*
|
148
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/
|
148
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-mixedinstancespolicy.html | AWS::AutoScaling::AutoScalingGroup.MixedInstancesPolicy}
|
149
149
|
*/
|
150
150
|
export interface AutoScalingAutoScalingGroupMixedInstancesPolicy {
|
151
151
|
InstancesDistribution?: AutoScalingAutoScalingGroupInstancesDistribution;
|
@@ -157,8 +157,8 @@ export interface AutoScalingAutoScalingGroupMixedInstancesPolicy {
|
|
157
157
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-networkbandwidthgbpsrequest.html | AWS::AutoScaling::AutoScalingGroup.NetworkBandwidthGbpsRequest}
|
158
158
|
*/
|
159
159
|
export interface AutoScalingAutoScalingGroupNetworkBandwidthGbpsRequest {
|
160
|
-
Max?: number;
|
161
160
|
Min?: number;
|
161
|
+
Max?: number;
|
162
162
|
}
|
163
163
|
/**
|
164
164
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.NetworkInterfaceCountRequest
|
@@ -166,27 +166,27 @@ export interface AutoScalingAutoScalingGroupNetworkBandwidthGbpsRequest {
|
|
166
166
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-networkinterfacecountrequest.html | AWS::AutoScaling::AutoScalingGroup.NetworkInterfaceCountRequest}
|
167
167
|
*/
|
168
168
|
export interface AutoScalingAutoScalingGroupNetworkInterfaceCountRequest {
|
169
|
-
Max?: number;
|
170
169
|
Min?: number;
|
170
|
+
Max?: number;
|
171
171
|
}
|
172
172
|
/**
|
173
173
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.NotificationConfiguration
|
174
174
|
*
|
175
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-
|
175
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-notificationconfiguration.html | AWS::AutoScaling::AutoScalingGroup.NotificationConfiguration}
|
176
176
|
*/
|
177
177
|
export interface AutoScalingAutoScalingGroupNotificationConfiguration {
|
178
|
+
TopicARN: any[];
|
178
179
|
NotificationTypes?: any[];
|
179
|
-
TopicARN: string;
|
180
180
|
}
|
181
181
|
/**
|
182
182
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.TagProperty
|
183
183
|
*
|
184
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-
|
184
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-tagproperty.html | AWS::AutoScaling::AutoScalingGroup.TagProperty}
|
185
185
|
*/
|
186
186
|
export interface AutoScalingAutoScalingGroupTagProperty {
|
187
|
+
Value: string;
|
187
188
|
Key: string;
|
188
189
|
PropagateAtLaunch: boolean;
|
189
|
-
Value: string;
|
190
190
|
}
|
191
191
|
/**
|
192
192
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.TotalLocalStorageGBRequest
|
@@ -194,8 +194,8 @@ export interface AutoScalingAutoScalingGroupTagProperty {
|
|
194
194
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-totallocalstoragegbrequest.html | AWS::AutoScaling::AutoScalingGroup.TotalLocalStorageGBRequest}
|
195
195
|
*/
|
196
196
|
export interface AutoScalingAutoScalingGroupTotalLocalStorageGBRequest {
|
197
|
-
Max?: number;
|
198
197
|
Min?: number;
|
198
|
+
Max?: number;
|
199
199
|
}
|
200
200
|
/**
|
201
201
|
* Type definition for AWS::AutoScaling::AutoScalingGroup.VCpuCountRequest
|
@@ -203,8 +203,8 @@ export interface AutoScalingAutoScalingGroupTotalLocalStorageGBRequest {
|
|
203
203
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-vcpucountrequest.html | AWS::AutoScaling::AutoScalingGroup.VCpuCountRequest}
|
204
204
|
*/
|
205
205
|
export interface AutoScalingAutoScalingGroupVCpuCountRequest {
|
206
|
-
Max?: number;
|
207
206
|
Min?: number;
|
207
|
+
Max?: number;
|
208
208
|
}
|
209
209
|
/**
|
210
210
|
* Type definition for AWS::AutoScaling::LaunchConfiguration.BlockDevice
|
@@ -412,58 +412,46 @@ export interface AutoScalingWarmPoolInstanceReusePolicy {
|
|
412
412
|
/**
|
413
413
|
* Type definition for AWS::AutoScaling::AutoScalingGroup
|
414
414
|
*
|
415
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
415
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscaling-autoscalinggroup.html | AWS::AutoScaling::AutoScalingGroup}
|
416
416
|
*/
|
417
417
|
export interface AutoScalingAutoScalingGroupProps {
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
418
|
+
LifecycleHookSpecificationList?: any[];
|
419
|
+
LoadBalancerNames?: any[];
|
420
|
+
LaunchConfigurationName?: string;
|
421
|
+
ServiceLinkedRoleARN?: string;
|
422
|
+
TargetGroupARNs?: any[];
|
422
423
|
Cooldown?: string;
|
423
|
-
|
424
|
+
NotificationConfigurations?: any[];
|
424
425
|
DesiredCapacity?: string;
|
425
|
-
DesiredCapacityType?: string;
|
426
426
|
HealthCheckGracePeriod?: number;
|
427
|
-
|
428
|
-
|
429
|
-
LaunchConfigurationName?: string;
|
427
|
+
DefaultInstanceWarmup?: number;
|
428
|
+
NewInstancesProtectedFromScaleIn?: boolean;
|
430
429
|
LaunchTemplate?: AutoScalingAutoScalingGroupLaunchTemplateSpecification;
|
431
|
-
LifecycleHookSpecificationList?: any[];
|
432
|
-
LoadBalancerNames?: any[];
|
433
|
-
MaxInstanceLifetime?: number;
|
434
|
-
MaxSize: string;
|
435
|
-
MetricsCollection?: any[];
|
436
|
-
MinSize: string;
|
437
430
|
MixedInstancesPolicy?: AutoScalingAutoScalingGroupMixedInstancesPolicy;
|
438
|
-
|
439
|
-
NotificationConfigurations?: any[];
|
440
|
-
PlacementGroup?: string;
|
441
|
-
ServiceLinkedRoleARN?: string;
|
431
|
+
VPCZoneIdentifier?: any[];
|
442
432
|
Tags?: Tag[];
|
443
|
-
|
433
|
+
Context?: string;
|
434
|
+
CapacityRebalance?: boolean;
|
435
|
+
InstanceId?: string;
|
436
|
+
AvailabilityZones?: any[];
|
437
|
+
MetricsCollection?: any[];
|
438
|
+
MaxSize: string;
|
439
|
+
MinSize: string;
|
444
440
|
TerminationPolicies?: any[];
|
445
|
-
|
446
|
-
|
447
|
-
/**
|
448
|
-
* Attributes type definition for AWS::AutoScaling::AutoScalingGroup
|
449
|
-
*
|
450
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html | AWS::AutoScaling::AutoScalingGroup}
|
451
|
-
*/
|
452
|
-
export interface AutoScalingAutoScalingGroupAttribs {
|
453
|
-
LaunchConfigurationName?: string;
|
454
|
-
LaunchTemplateSpecification?: string;
|
455
|
-
MixedInstancesPolicy?: string;
|
441
|
+
AutoScalingGroupName?: string;
|
442
|
+
DesiredCapacityType?: string;
|
456
443
|
PlacementGroup?: string;
|
457
|
-
|
444
|
+
HealthCheckType?: string;
|
445
|
+
MaxInstanceLifetime?: number;
|
458
446
|
}
|
459
447
|
/**
|
460
448
|
* Resource class for AWS::AutoScaling::AutoScalingGroup
|
461
449
|
*
|
462
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
450
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscaling-autoscalinggroup.html | AWS::AutoScaling::AutoScalingGroup}
|
463
451
|
*/
|
464
|
-
export declare class AutoScalingAutoScalingGroup extends ResourceBase<"AWS::AutoScaling::AutoScalingGroup", AutoScalingAutoScalingGroupProps,
|
452
|
+
export declare class AutoScalingAutoScalingGroup extends ResourceBase<"AWS::AutoScaling::AutoScalingGroup", AutoScalingAutoScalingGroupProps, Record<string, never>> {
|
465
453
|
static readonly Type = "AWS::AutoScaling::AutoScalingGroup";
|
466
|
-
static readonly AttributeNames:
|
454
|
+
static readonly AttributeNames: never[];
|
467
455
|
constructor(logicalId: string, properties: AutoScalingAutoScalingGroupProps, options?: ResourceOptions);
|
468
456
|
}
|
469
457
|
/**
|
@@ -2,7 +2,7 @@ import { ResourceBase } from "../util.js";
|
|
2
2
|
/**
|
3
3
|
* Resource class for AWS::AutoScaling::AutoScalingGroup
|
4
4
|
*
|
5
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
5
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscaling-autoscalinggroup.html | AWS::AutoScaling::AutoScalingGroup}
|
6
6
|
*/
|
7
7
|
class AutoScalingAutoScalingGroup extends ResourceBase {
|
8
8
|
constructor(logicalId, properties, options) {
|
@@ -10,13 +10,7 @@ class AutoScalingAutoScalingGroup extends ResourceBase {
|
|
10
10
|
}
|
11
11
|
}
|
12
12
|
AutoScalingAutoScalingGroup.Type = "AWS::AutoScaling::AutoScalingGroup";
|
13
|
-
AutoScalingAutoScalingGroup.AttributeNames = [
|
14
|
-
"LaunchConfigurationName",
|
15
|
-
"LaunchTemplateSpecification",
|
16
|
-
"MixedInstancesPolicy",
|
17
|
-
"PlacementGroup",
|
18
|
-
"VPCZoneIdentifier",
|
19
|
-
];
|
13
|
+
AutoScalingAutoScalingGroup.AttributeNames = [];
|
20
14
|
export { AutoScalingAutoScalingGroup };
|
21
15
|
/**
|
22
16
|
* Resource class for AWS::AutoScaling::LaunchConfiguration
|
@@ -59,6 +59,24 @@ export interface CognitoIdentityPoolRoleAttachmentRoleMapping {
|
|
59
59
|
export interface CognitoIdentityPoolRoleAttachmentRulesConfigurationType {
|
60
60
|
Rules: any[];
|
61
61
|
}
|
62
|
+
/**
|
63
|
+
* Type definition for AWS::Cognito::LogDeliveryConfiguration.CloudWatchLogsConfiguration
|
64
|
+
*
|
65
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-logdeliveryconfiguration-cloudwatchlogsconfiguration.html | AWS::Cognito::LogDeliveryConfiguration.CloudWatchLogsConfiguration}
|
66
|
+
*/
|
67
|
+
export interface CognitoLogDeliveryConfigurationCloudWatchLogsConfiguration {
|
68
|
+
LogGroupArn?: string;
|
69
|
+
}
|
70
|
+
/**
|
71
|
+
* Type definition for AWS::Cognito::LogDeliveryConfiguration.LogConfiguration
|
72
|
+
*
|
73
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-logdeliveryconfiguration-logconfiguration.html | AWS::Cognito::LogDeliveryConfiguration.LogConfiguration}
|
74
|
+
*/
|
75
|
+
export interface CognitoLogDeliveryConfigurationLogConfiguration {
|
76
|
+
EventSource?: string;
|
77
|
+
CloudWatchLogsConfiguration?: CognitoLogDeliveryConfigurationCloudWatchLogsConfiguration;
|
78
|
+
LogLevel?: string;
|
79
|
+
}
|
62
80
|
/**
|
63
81
|
* Type definition for AWS::Cognito::UserPool.AccountRecoverySetting
|
64
82
|
*
|
@@ -457,13 +475,40 @@ export declare class CognitoIdentityPoolRoleAttachment extends ResourceBase<"AWS
|
|
457
475
|
static readonly AttributeNames: never[];
|
458
476
|
constructor(logicalId: string, properties: CognitoIdentityPoolRoleAttachmentProps, options?: ResourceOptions);
|
459
477
|
}
|
478
|
+
/**
|
479
|
+
* Type definition for AWS::Cognito::LogDeliveryConfiguration
|
480
|
+
*
|
481
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-logdeliveryconfiguration.html | AWS::Cognito::LogDeliveryConfiguration}
|
482
|
+
*/
|
483
|
+
export interface CognitoLogDeliveryConfigurationProps {
|
484
|
+
UserPoolId: string;
|
485
|
+
LogConfigurations?: any[];
|
486
|
+
}
|
487
|
+
/**
|
488
|
+
* Attributes type definition for AWS::Cognito::LogDeliveryConfiguration
|
489
|
+
*
|
490
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-logdeliveryconfiguration.html | AWS::Cognito::LogDeliveryConfiguration}
|
491
|
+
*/
|
492
|
+
export interface CognitoLogDeliveryConfigurationAttribs {
|
493
|
+
Id?: string;
|
494
|
+
}
|
495
|
+
/**
|
496
|
+
* Resource class for AWS::Cognito::LogDeliveryConfiguration
|
497
|
+
*
|
498
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-logdeliveryconfiguration.html | AWS::Cognito::LogDeliveryConfiguration}
|
499
|
+
*/
|
500
|
+
export declare class CognitoLogDeliveryConfiguration extends ResourceBase<"AWS::Cognito::LogDeliveryConfiguration", CognitoLogDeliveryConfigurationProps, CognitoLogDeliveryConfigurationAttribs> {
|
501
|
+
static readonly Type = "AWS::Cognito::LogDeliveryConfiguration";
|
502
|
+
static readonly AttributeNames: readonly (keyof CognitoLogDeliveryConfigurationAttribs)[];
|
503
|
+
constructor(logicalId: string, properties: CognitoLogDeliveryConfigurationProps, options?: ResourceOptions);
|
504
|
+
}
|
460
505
|
/**
|
461
506
|
* Type definition for AWS::Cognito::UserPool
|
462
507
|
*
|
463
508
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html | AWS::Cognito::UserPool}
|
464
509
|
*/
|
465
510
|
export interface CognitoUserPoolProps {
|
466
|
-
UserPoolTags?:
|
511
|
+
UserPoolTags?: Record<string, any>;
|
467
512
|
Policies?: CognitoUserPoolPolicies;
|
468
513
|
VerificationMessageTemplate?: CognitoUserPoolVerificationMessageTemplate;
|
469
514
|
MfaConfiguration?: string;
|
@@ -495,6 +540,7 @@ export interface CognitoUserPoolProps {
|
|
495
540
|
*/
|
496
541
|
export interface CognitoUserPoolAttribs {
|
497
542
|
ProviderName?: string;
|
543
|
+
UserPoolId?: string;
|
498
544
|
ProviderURL?: string;
|
499
545
|
Arn?: string;
|
500
546
|
}
|
@@ -544,6 +590,7 @@ export interface CognitoUserPoolClientProps {
|
|
544
590
|
*/
|
545
591
|
export interface CognitoUserPoolClientAttribs {
|
546
592
|
ClientSecret?: string;
|
593
|
+
ClientId?: string;
|
547
594
|
Name?: string;
|
548
595
|
}
|
549
596
|
/**
|
@@ -38,6 +38,19 @@ class CognitoIdentityPoolRoleAttachment extends ResourceBase {
|
|
38
38
|
CognitoIdentityPoolRoleAttachment.Type = "AWS::Cognito::IdentityPoolRoleAttachment";
|
39
39
|
CognitoIdentityPoolRoleAttachment.AttributeNames = [];
|
40
40
|
export { CognitoIdentityPoolRoleAttachment };
|
41
|
+
/**
|
42
|
+
* Resource class for AWS::Cognito::LogDeliveryConfiguration
|
43
|
+
*
|
44
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-logdeliveryconfiguration.html | AWS::Cognito::LogDeliveryConfiguration}
|
45
|
+
*/
|
46
|
+
class CognitoLogDeliveryConfiguration extends ResourceBase {
|
47
|
+
constructor(logicalId, properties, options) {
|
48
|
+
super(CognitoLogDeliveryConfiguration.Type, CognitoLogDeliveryConfiguration.AttributeNames, logicalId, properties, options);
|
49
|
+
}
|
50
|
+
}
|
51
|
+
CognitoLogDeliveryConfiguration.Type = "AWS::Cognito::LogDeliveryConfiguration";
|
52
|
+
CognitoLogDeliveryConfiguration.AttributeNames = ["Id"];
|
53
|
+
export { CognitoLogDeliveryConfiguration };
|
41
54
|
/**
|
42
55
|
* Resource class for AWS::Cognito::UserPool
|
43
56
|
*
|
@@ -49,7 +62,7 @@ class CognitoUserPool extends ResourceBase {
|
|
49
62
|
}
|
50
63
|
}
|
51
64
|
CognitoUserPool.Type = "AWS::Cognito::UserPool";
|
52
|
-
CognitoUserPool.AttributeNames = ["ProviderName", "ProviderURL", "Arn"];
|
65
|
+
CognitoUserPool.AttributeNames = ["ProviderName", "UserPoolId", "ProviderURL", "Arn"];
|
53
66
|
export { CognitoUserPool };
|
54
67
|
/**
|
55
68
|
* Resource class for AWS::Cognito::UserPoolClient
|
@@ -62,7 +75,7 @@ class CognitoUserPoolClient extends ResourceBase {
|
|
62
75
|
}
|
63
76
|
}
|
64
77
|
CognitoUserPoolClient.Type = "AWS::Cognito::UserPoolClient";
|
65
|
-
CognitoUserPoolClient.AttributeNames = ["ClientSecret", "Name"];
|
78
|
+
CognitoUserPoolClient.AttributeNames = ["ClientSecret", "ClientId", "Name"];
|
66
79
|
export { CognitoUserPoolClient };
|
67
80
|
/**
|
68
81
|
* Resource class for AWS::Cognito::UserPoolDomain
|
@@ -840,6 +840,7 @@ export interface ConnectRoutingProfileProps {
|
|
840
840
|
Description: string;
|
841
841
|
MediaConcurrencies: any[];
|
842
842
|
InstanceArn: string;
|
843
|
+
AgentAvailabilityTimer?: string;
|
843
844
|
QueueConfigs?: any[];
|
844
845
|
DefaultOutboundQueueArn: string;
|
845
846
|
Tags?: Tag[];
|
@@ -1063,6 +1064,7 @@ export declare class ConnectUser extends ResourceBase<"AWS::Connect::User", Conn
|
|
1063
1064
|
export interface ConnectUserHierarchyGroupProps {
|
1064
1065
|
InstanceArn: string;
|
1065
1066
|
ParentGroupArn?: string;
|
1067
|
+
Tags?: Tag[];
|
1066
1068
|
Name: string;
|
1067
1069
|
}
|
1068
1070
|
/**
|