@awboost/cfntypes 1.0.0-beta.65 → 1.0.0-beta.67
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 +23 -6
- package/lib/resources.generated/AWS-AppConfig.js +2 -2
- package/lib/resources.generated/AWS-AppRunner.d.ts +1 -0
- package/lib/resources.generated/AWS-AppStream.d.ts +1 -0
- package/lib/resources.generated/AWS-AutoScaling.d.ts +78 -66
- package/lib/resources.generated/AWS-AutoScaling.js +8 -2
- package/lib/resources.generated/AWS-CodeBuild.d.ts +10 -2
- package/lib/resources.generated/AWS-Cognito.d.ts +3 -1
- package/lib/resources.generated/AWS-Cognito.js +2 -2
- package/lib/resources.generated/AWS-CustomerProfiles.d.ts +118 -0
- package/lib/resources.generated/AWS-CustomerProfiles.js +10 -1
- package/lib/resources.generated/AWS-DLM.d.ts +14 -0
- package/lib/resources.generated/AWS-EC2.d.ts +36 -17
- package/lib/resources.generated/AWS-EC2.js +4 -4
- package/lib/resources.generated/AWS-EMRServerless.d.ts +43 -4
- package/lib/resources.generated/AWS-EntityResolution.d.ts +1 -0
- package/lib/resources.generated/AWS-EntityResolution.js +1 -1
- package/lib/resources.generated/AWS-IAM.d.ts +11 -11
- package/lib/resources.generated/AWS-IAM.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 +1 -0
- package/lib/resources.generated/AWS-QuickSight.d.ts +96 -6
- package/lib/resources.generated/AWS-S3.d.ts +18 -0
- package/lib/resources.generated/AWS-SNS.d.ts +1 -0
- package/lib/resources.generated/AWS-ServiceCatalogAppRegistry.d.ts +0 -2
- package/lib/resources.generated/AWS-ServiceCatalogAppRegistry.js +2 -2
- 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
|
/**
|
@@ -109,14 +117,23 @@ export interface AppConfigConfigurationProfileProps {
|
|
109
117
|
Tags?: Tag[];
|
110
118
|
Name: string;
|
111
119
|
}
|
120
|
+
/**
|
121
|
+
* Attributes type definition for AWS::AppConfig::ConfigurationProfile
|
122
|
+
*
|
123
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html | AWS::AppConfig::ConfigurationProfile}
|
124
|
+
*/
|
125
|
+
export interface AppConfigConfigurationProfileAttribs {
|
126
|
+
ConfigurationProfileId?: string;
|
127
|
+
KmsKeyArn?: string;
|
128
|
+
}
|
112
129
|
/**
|
113
130
|
* Resource class for AWS::AppConfig::ConfigurationProfile
|
114
131
|
*
|
115
132
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html | AWS::AppConfig::ConfigurationProfile}
|
116
133
|
*/
|
117
|
-
export declare class AppConfigConfigurationProfile extends ResourceBase<"AWS::AppConfig::ConfigurationProfile", AppConfigConfigurationProfileProps,
|
134
|
+
export declare class AppConfigConfigurationProfile extends ResourceBase<"AWS::AppConfig::ConfigurationProfile", AppConfigConfigurationProfileProps, AppConfigConfigurationProfileAttribs> {
|
118
135
|
static readonly Type = "AWS::AppConfig::ConfigurationProfile";
|
119
|
-
static readonly AttributeNames:
|
136
|
+
static readonly AttributeNames: readonly (keyof AppConfigConfigurationProfileAttribs)[];
|
120
137
|
constructor(logicalId: string, properties: AppConfigConfigurationProfileProps, options?: ResourceOptions);
|
121
138
|
}
|
122
139
|
/**
|
@@ -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
|
@@ -23,7 +23,7 @@ class AppConfigConfigurationProfile extends ResourceBase {
|
|
23
23
|
}
|
24
24
|
}
|
25
25
|
AppConfigConfigurationProfile.Type = "AWS::AppConfig::ConfigurationProfile";
|
26
|
-
AppConfigConfigurationProfile.AttributeNames = [];
|
26
|
+
AppConfigConfigurationProfile.AttributeNames = ["ConfigurationProfileId", "KmsKeyArn"];
|
27
27
|
export { AppConfigConfigurationProfile };
|
28
28
|
/**
|
29
29
|
* Resource class for AWS::AppConfig::Deployment
|
@@ -135,6 +135,7 @@ export interface AppRunnerServiceKeyValuePair {
|
|
135
135
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-networkconfiguration.html | AWS::AppRunner::Service.NetworkConfiguration}
|
136
136
|
*/
|
137
137
|
export interface AppRunnerServiceNetworkConfiguration {
|
138
|
+
IpAddressType?: string;
|
138
139
|
EgressConfiguration?: AppRunnerServiceEgressConfiguration;
|
139
140
|
IngressConfiguration?: AppRunnerServiceIngressConfiguration;
|
140
141
|
}
|
@@ -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
|
-
Min?: number;
|
11
10
|
Max?: number;
|
11
|
+
Min?: 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
|
-
Min?: number;
|
20
19
|
Max?: number;
|
20
|
+
Min?: 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
|
-
Min?: number;
|
29
28
|
Max?: number;
|
29
|
+
Min?: 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/cfn-as-mixedinstancespolicy-instancerequirements.html | AWS::AutoScaling::AutoScalingGroup.InstanceRequirements}
|
35
35
|
*/
|
36
36
|
export interface AutoScalingAutoScalingGroupInstanceRequirements {
|
37
|
-
|
38
|
-
InstanceGenerations?: any[];
|
39
|
-
NetworkInterfaceCount?: AutoScalingAutoScalingGroupNetworkInterfaceCountRequest;
|
40
|
-
AcceleratorTypes?: any[];
|
41
|
-
MemoryGiBPerVCpu?: AutoScalingAutoScalingGroupMemoryGiBPerVCpuRequest;
|
37
|
+
AcceleratorCount?: AutoScalingAutoScalingGroupAcceleratorCountRequest;
|
42
38
|
AcceleratorManufacturers?: any[];
|
43
|
-
|
44
|
-
|
39
|
+
AcceleratorNames?: any[];
|
40
|
+
AcceleratorTotalMemoryMiB?: AutoScalingAutoScalingGroupAcceleratorTotalMemoryMiBRequest;
|
41
|
+
AcceleratorTypes?: any[];
|
45
42
|
AllowedInstanceTypes?: any[];
|
46
|
-
LocalStorage?: string;
|
47
|
-
CpuManufacturers?: any[];
|
48
|
-
AcceleratorCount?: AutoScalingAutoScalingGroupAcceleratorCountRequest;
|
49
|
-
NetworkBandwidthGbps?: AutoScalingAutoScalingGroupNetworkBandwidthGbpsRequest;
|
50
43
|
BareMetal?: string;
|
51
|
-
RequireHibernateSupport?: boolean;
|
52
44
|
BaselineEbsBandwidthMbps?: AutoScalingAutoScalingGroupBaselineEbsBandwidthMbpsRequest;
|
53
|
-
SpotMaxPricePercentageOverLowestPrice?: number;
|
54
|
-
AcceleratorNames?: any[];
|
55
|
-
AcceleratorTotalMemoryMiB?: AutoScalingAutoScalingGroupAcceleratorTotalMemoryMiBRequest;
|
56
|
-
OnDemandMaxPricePercentageOverLowestPrice?: number;
|
57
45
|
BurstablePerformance?: string;
|
46
|
+
CpuManufacturers?: any[];
|
47
|
+
ExcludedInstanceTypes?: any[];
|
48
|
+
InstanceGenerations?: any[];
|
49
|
+
LocalStorage?: string;
|
50
|
+
LocalStorageTypes?: any[];
|
51
|
+
MemoryGiBPerVCpu?: AutoScalingAutoScalingGroupMemoryGiBPerVCpuRequest;
|
58
52
|
MemoryMiB?: AutoScalingAutoScalingGroupMemoryMiBRequest;
|
53
|
+
NetworkBandwidthGbps?: AutoScalingAutoScalingGroupNetworkBandwidthGbpsRequest;
|
54
|
+
NetworkInterfaceCount?: AutoScalingAutoScalingGroupNetworkInterfaceCountRequest;
|
55
|
+
OnDemandMaxPricePercentageOverLowestPrice?: number;
|
56
|
+
RequireHibernateSupport?: boolean;
|
57
|
+
SpotMaxPricePercentageOverLowestPrice?: number;
|
59
58
|
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/cfn-as-mixedinstancespolicy-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
|
-
SpotInstancePools?: number;
|
71
70
|
SpotAllocationStrategy?: string;
|
71
|
+
SpotInstancePools?: number;
|
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/cfn-as-mixedinstancespolicy-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/cfn-as-mixedinstancespolicy-launchtemplateoverrides.html | AWS::AutoScaling::AutoScalingGroup.LaunchTemplateOverrides}
|
87
87
|
*/
|
88
88
|
export interface AutoScalingAutoScalingGroupLaunchTemplateOverrides {
|
89
|
-
LaunchTemplateSpecification?: AutoScalingAutoScalingGroupLaunchTemplateSpecification;
|
90
|
-
WeightedCapacity?: string;
|
91
89
|
InstanceRequirements?: AutoScalingAutoScalingGroupInstanceRequirements;
|
92
90
|
InstanceType?: string;
|
91
|
+
LaunchTemplateSpecification?: AutoScalingAutoScalingGroupLaunchTemplateSpecification;
|
92
|
+
WeightedCapacity?: 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;
|
100
101
|
LaunchTemplateName?: string;
|
101
102
|
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;
|
110
112
|
LifecycleHookName: string;
|
111
113
|
LifecycleTransition: string;
|
112
|
-
HeartbeatTimeout?: number;
|
113
114
|
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
|
-
Min?: number;
|
125
124
|
Max?: number;
|
125
|
+
Min?: 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
|
-
Min?: number;
|
134
133
|
Max?: number;
|
134
|
+
Min?: 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-as-metricscollection.html | AWS::AutoScaling::AutoScalingGroup.MetricsCollection}
|
140
140
|
*/
|
141
141
|
export interface AutoScalingAutoScalingGroupMetricsCollection {
|
142
|
-
Metrics?: any[];
|
143
142
|
Granularity: string;
|
143
|
+
Metrics?: any[];
|
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/cfn-as-group-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
|
-
Min?: number;
|
161
160
|
Max?: number;
|
161
|
+
Min?: 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
|
-
Min?: number;
|
170
169
|
Max?: number;
|
170
|
+
Min?: 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-as-notificationconfigurations.html | AWS::AutoScaling::AutoScalingGroup.NotificationConfiguration}
|
176
176
|
*/
|
177
177
|
export interface AutoScalingAutoScalingGroupNotificationConfiguration {
|
178
|
-
TopicARN: any[];
|
179
178
|
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-as-tags.html | AWS::AutoScaling::AutoScalingGroup.TagProperty}
|
185
185
|
*/
|
186
186
|
export interface AutoScalingAutoScalingGroupTagProperty {
|
187
|
-
Value: string;
|
188
187
|
Key: string;
|
189
188
|
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
|
-
Min?: number;
|
198
197
|
Max?: number;
|
198
|
+
Min?: 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
|
-
Min?: number;
|
207
206
|
Max?: number;
|
207
|
+
Min?: number;
|
208
208
|
}
|
209
209
|
/**
|
210
210
|
* Type definition for AWS::AutoScaling::LaunchConfiguration.BlockDevice
|
@@ -412,46 +412,58 @@ 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-properties-as-group.html | AWS::AutoScaling::AutoScalingGroup}
|
416
416
|
*/
|
417
417
|
export interface AutoScalingAutoScalingGroupProps {
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
TargetGroupARNs?: any[];
|
418
|
+
AutoScalingGroupName?: string;
|
419
|
+
AvailabilityZones?: any[];
|
420
|
+
CapacityRebalance?: boolean;
|
421
|
+
Context?: string;
|
423
422
|
Cooldown?: string;
|
424
|
-
|
423
|
+
DefaultInstanceWarmup?: number;
|
425
424
|
DesiredCapacity?: string;
|
425
|
+
DesiredCapacityType?: string;
|
426
426
|
HealthCheckGracePeriod?: number;
|
427
|
-
|
428
|
-
NewInstancesProtectedFromScaleIn?: boolean;
|
429
|
-
LaunchTemplate?: AutoScalingAutoScalingGroupLaunchTemplateSpecification;
|
430
|
-
MixedInstancesPolicy?: AutoScalingAutoScalingGroupMixedInstancesPolicy;
|
431
|
-
VPCZoneIdentifier?: any[];
|
432
|
-
Tags?: Tag[];
|
433
|
-
Context?: string;
|
434
|
-
CapacityRebalance?: boolean;
|
427
|
+
HealthCheckType?: string;
|
435
428
|
InstanceId?: string;
|
436
|
-
|
437
|
-
|
429
|
+
LaunchConfigurationName?: string;
|
430
|
+
LaunchTemplate?: AutoScalingAutoScalingGroupLaunchTemplateSpecification;
|
431
|
+
LifecycleHookSpecificationList?: any[];
|
432
|
+
LoadBalancerNames?: any[];
|
433
|
+
MaxInstanceLifetime?: number;
|
438
434
|
MaxSize: string;
|
435
|
+
MetricsCollection?: any[];
|
439
436
|
MinSize: string;
|
437
|
+
MixedInstancesPolicy?: AutoScalingAutoScalingGroupMixedInstancesPolicy;
|
438
|
+
NewInstancesProtectedFromScaleIn?: boolean;
|
439
|
+
NotificationConfigurations?: any[];
|
440
|
+
PlacementGroup?: string;
|
441
|
+
ServiceLinkedRoleARN?: string;
|
442
|
+
Tags?: Tag[];
|
443
|
+
TargetGroupARNs?: any[];
|
440
444
|
TerminationPolicies?: any[];
|
441
|
-
|
442
|
-
|
445
|
+
VPCZoneIdentifier?: any[];
|
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;
|
443
456
|
PlacementGroup?: string;
|
444
|
-
|
445
|
-
MaxInstanceLifetime?: number;
|
457
|
+
VPCZoneIdentifier?: string;
|
446
458
|
}
|
447
459
|
/**
|
448
460
|
* Resource class for AWS::AutoScaling::AutoScalingGroup
|
449
461
|
*
|
450
|
-
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-
|
462
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-as-group.html | AWS::AutoScaling::AutoScalingGroup}
|
451
463
|
*/
|
452
|
-
export declare class AutoScalingAutoScalingGroup extends ResourceBase<"AWS::AutoScaling::AutoScalingGroup", AutoScalingAutoScalingGroupProps,
|
464
|
+
export declare class AutoScalingAutoScalingGroup extends ResourceBase<"AWS::AutoScaling::AutoScalingGroup", AutoScalingAutoScalingGroupProps, AutoScalingAutoScalingGroupAttribs> {
|
453
465
|
static readonly Type = "AWS::AutoScaling::AutoScalingGroup";
|
454
|
-
static readonly AttributeNames:
|
466
|
+
static readonly AttributeNames: readonly (keyof AutoScalingAutoScalingGroupAttribs)[];
|
455
467
|
constructor(logicalId: string, properties: AutoScalingAutoScalingGroupProps, options?: ResourceOptions);
|
456
468
|
}
|
457
469
|
/**
|
@@ -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-properties-as-group.html | AWS::AutoScaling::AutoScalingGroup}
|
6
6
|
*/
|
7
7
|
class AutoScalingAutoScalingGroup extends ResourceBase {
|
8
8
|
constructor(logicalId, properties, options) {
|
@@ -10,7 +10,13 @@ class AutoScalingAutoScalingGroup extends ResourceBase {
|
|
10
10
|
}
|
11
11
|
}
|
12
12
|
AutoScalingAutoScalingGroup.Type = "AWS::AutoScaling::AutoScalingGroup";
|
13
|
-
AutoScalingAutoScalingGroup.AttributeNames = [
|
13
|
+
AutoScalingAutoScalingGroup.AttributeNames = [
|
14
|
+
"LaunchConfigurationName",
|
15
|
+
"LaunchTemplateSpecification",
|
16
|
+
"MixedInstancesPolicy",
|
17
|
+
"PlacementGroup",
|
18
|
+
"VPCZoneIdentifier",
|
19
|
+
];
|
14
20
|
export { AutoScalingAutoScalingGroup };
|
15
21
|
/**
|
16
22
|
* Resource class for AWS::AutoScaling::LaunchConfiguration
|
@@ -51,13 +51,13 @@ export interface CodeBuildProjectCloudWatchLogsConfig {
|
|
51
51
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-environment.html | AWS::CodeBuild::Project.Environment}
|
52
52
|
*/
|
53
53
|
export interface CodeBuildProjectEnvironment {
|
54
|
-
Type
|
54
|
+
Type?: string;
|
55
55
|
EnvironmentVariables?: any[];
|
56
56
|
PrivilegedMode?: boolean;
|
57
57
|
ImagePullCredentialsType?: string;
|
58
58
|
Image: string;
|
59
59
|
RegistryCredential?: CodeBuildProjectRegistryCredential;
|
60
|
-
ComputeType
|
60
|
+
ComputeType?: string;
|
61
61
|
Certificate?: string;
|
62
62
|
}
|
63
63
|
/**
|
@@ -127,6 +127,14 @@ export interface CodeBuildProjectProjectFileSystemLocation {
|
|
127
127
|
MountOptions?: string;
|
128
128
|
Location: string;
|
129
129
|
}
|
130
|
+
/**
|
131
|
+
* Type definition for AWS::CodeBuild::Project.ProjectFleet
|
132
|
+
*
|
133
|
+
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codebuild-project-projectfleet.html | AWS::CodeBuild::Project.ProjectFleet}
|
134
|
+
*/
|
135
|
+
export interface CodeBuildProjectProjectFleet {
|
136
|
+
FleetArn?: string;
|
137
|
+
}
|
130
138
|
/**
|
131
139
|
* Type definition for AWS::CodeBuild::Project.ProjectSourceVersion
|
132
140
|
*
|
@@ -508,7 +508,7 @@ export declare class CognitoLogDeliveryConfiguration extends ResourceBase<"AWS::
|
|
508
508
|
* @see {@link http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpool.html | AWS::Cognito::UserPool}
|
509
509
|
*/
|
510
510
|
export interface CognitoUserPoolProps {
|
511
|
-
UserPoolTags?:
|
511
|
+
UserPoolTags?: Record<string, any>;
|
512
512
|
Policies?: CognitoUserPoolPolicies;
|
513
513
|
VerificationMessageTemplate?: CognitoUserPoolVerificationMessageTemplate;
|
514
514
|
MfaConfiguration?: string;
|
@@ -540,6 +540,7 @@ export interface CognitoUserPoolProps {
|
|
540
540
|
*/
|
541
541
|
export interface CognitoUserPoolAttribs {
|
542
542
|
ProviderName?: string;
|
543
|
+
UserPoolId?: string;
|
543
544
|
ProviderURL?: string;
|
544
545
|
Arn?: string;
|
545
546
|
}
|
@@ -589,6 +590,7 @@ export interface CognitoUserPoolClientProps {
|
|
589
590
|
*/
|
590
591
|
export interface CognitoUserPoolClientAttribs {
|
591
592
|
ClientSecret?: string;
|
593
|
+
ClientId?: string;
|
592
594
|
Name?: string;
|
593
595
|
}
|
594
596
|
/**
|
@@ -62,7 +62,7 @@ class CognitoUserPool extends ResourceBase {
|
|
62
62
|
}
|
63
63
|
}
|
64
64
|
CognitoUserPool.Type = "AWS::Cognito::UserPool";
|
65
|
-
CognitoUserPool.AttributeNames = ["ProviderName", "ProviderURL", "Arn"];
|
65
|
+
CognitoUserPool.AttributeNames = ["ProviderName", "UserPoolId", "ProviderURL", "Arn"];
|
66
66
|
export { CognitoUserPool };
|
67
67
|
/**
|
68
68
|
* Resource class for AWS::Cognito::UserPoolClient
|
@@ -75,7 +75,7 @@ class CognitoUserPoolClient extends ResourceBase {
|
|
75
75
|
}
|
76
76
|
}
|
77
77
|
CognitoUserPoolClient.Type = "AWS::Cognito::UserPoolClient";
|
78
|
-
CognitoUserPoolClient.AttributeNames = ["ClientSecret", "Name"];
|
78
|
+
CognitoUserPoolClient.AttributeNames = ["ClientSecret", "ClientId", "Name"];
|
79
79
|
export { CognitoUserPoolClient };
|
80
80
|
/**
|
81
81
|
* Resource class for AWS::Cognito::UserPoolDomain
|