@propulsionworks/cloudformation 0.1.40 → 0.1.41
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/out/exports/resources.generated/aws-arcregionswitch-plan.d.ts +94 -1
- package/out/exports/resources.generated/aws-autoscaling-autoscalinggroup.d.ts +18 -0
- package/out/exports/resources.generated/aws-cases-caserule.d.ts +24 -24
- package/out/exports/resources.generated/aws-cases-domain.d.ts +10 -6
- package/out/exports/resources.generated/aws-cases-field.d.ts +10 -10
- package/out/exports/resources.generated/aws-cases-layout.d.ts +30 -20
- package/out/exports/resources.generated/aws-cases-template.d.ts +32 -18
- package/out/exports/resources.generated/aws-connect-contactflowmodule.d.ts +2 -2
- package/out/exports/resources.generated/aws-ec2-clientvpnendpoint.d.ts +2 -0
- package/out/exports/resources.generated/aws-ec2-ec2fleet.d.ts +3 -1
- package/out/exports/resources.generated/aws-ec2-spotfleet.d.ts +3 -1
- package/out/exports/resources.generated/aws-ecs-capacityprovider.d.ts +10 -0
- package/out/exports/resources.generated/aws-ecs-expressgatewayservice.d.ts +12 -0
- package/out/exports/resources.generated/aws-groundstation-dataflowendpointgroupv2.d.ts +42 -27
- package/out/exports/resources.generated/aws-iot-topicrule.d.ts +25 -0
- package/out/exports/resources.generated/aws-kafkaconnect-connector.d.ts +1 -1
- package/out/exports/resources.generated/aws-lex-bot.d.ts +6 -0
- package/out/exports/resources.generated/aws-logs-loggroup.d.ts +1 -0
- package/out/exports/resources.generated/aws-mediatailor-playbackconfiguration.d.ts +42 -0
- package/out/exports/resources.generated/aws-observabilityadmin-s3tableintegration.d.ts +10 -10
- package/out/exports/resources.generated/aws-observabilityadmin-telemetrypipelines.d.ts +20 -3
- package/out/exports/resources.generated/aws-odb-odbpeeringconnection.d.ts +1 -1
- package/out/exports/resources.generated/aws-quicksight-dashboard.d.ts +15 -2
- package/out/exports/resources.generated/aws-securityhub-connectorv2.d.ts +5 -5
- package/out/exports/resources.generated/aws-ses-multiregionendpoint.d.ts +1 -1
- package/out/exports/resources.generated/aws-ses-tenant.d.ts +11 -7
- package/out/exports/resources.generated/aws-ssm-maintenancewindowtask.d.ts +1 -1
- package/out/exports/resources.generated/aws-workspacesweb-usersettings.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,16 +1,26 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Creates a layout in the Cases domain. Layouts define the following configuration in the top section and More Info tab of the Cases user interface:
|
|
4
|
+
*
|
|
5
|
+
* - Fields to display to the users
|
|
6
|
+
* - Field ordering
|
|
7
|
+
*
|
|
8
|
+
* > Title and Status fields cannot be part of layouts since they are not configurable.
|
|
4
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-layout.html}
|
|
5
10
|
*/
|
|
6
11
|
export type CasesLayout = ResourceDefinitionWithAttributes<"AWS::Cases::Layout", CasesLayoutProps, CasesLayoutAttribs>;
|
|
7
12
|
/**
|
|
8
|
-
*
|
|
13
|
+
* Creates a layout in the Cases domain. Layouts define the following configuration in the top section and More Info tab of the Cases user interface:
|
|
14
|
+
*
|
|
15
|
+
* - Fields to display to the users
|
|
16
|
+
* - Field ordering
|
|
17
|
+
*
|
|
18
|
+
* > Title and Status fields cannot be part of layouts since they are not configurable.
|
|
9
19
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-layout.html}
|
|
10
20
|
*/
|
|
11
21
|
export type CasesLayoutProps = {
|
|
12
22
|
/**
|
|
13
|
-
*
|
|
23
|
+
* Object to store union of different versions of layout content.
|
|
14
24
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-layout.html#cfn-cases-layout-content}
|
|
15
25
|
*/
|
|
16
26
|
Content: LayoutContent;
|
|
@@ -22,7 +32,7 @@ export type CasesLayoutProps = {
|
|
|
22
32
|
*/
|
|
23
33
|
DomainId?: string | undefined;
|
|
24
34
|
/**
|
|
25
|
-
*
|
|
35
|
+
* The name of the layout.
|
|
26
36
|
* @minLength 1
|
|
27
37
|
* @maxLength 100
|
|
28
38
|
* @pattern ^.*[\S]$
|
|
@@ -30,7 +40,7 @@ export type CasesLayoutProps = {
|
|
|
30
40
|
*/
|
|
31
41
|
Name: string;
|
|
32
42
|
/**
|
|
33
|
-
*
|
|
43
|
+
* An array of key-value pairs to apply to this resource.
|
|
34
44
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-layout.html#cfn-cases-layout-tags}
|
|
35
45
|
*/
|
|
36
46
|
Tags?: Tag[] | undefined;
|
|
@@ -40,19 +50,19 @@ export type CasesLayoutProps = {
|
|
|
40
50
|
*/
|
|
41
51
|
export type CasesLayoutAttribs = {
|
|
42
52
|
/**
|
|
43
|
-
*
|
|
53
|
+
* Timestamp at which the resource was created.
|
|
44
54
|
* @format date-time
|
|
45
55
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-layout.html#cfn-cases-layout-createdtime}
|
|
46
56
|
*/
|
|
47
57
|
CreatedTime: string;
|
|
48
58
|
/**
|
|
49
|
-
*
|
|
59
|
+
* Timestamp at which the resource was created or last modified.
|
|
50
60
|
* @format date-time
|
|
51
61
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-layout.html#cfn-cases-layout-lastmodifiedtime}
|
|
52
62
|
*/
|
|
53
63
|
LastModifiedTime: string;
|
|
54
64
|
/**
|
|
55
|
-
* The Amazon Resource Name (ARN) of the layout.
|
|
65
|
+
* The Amazon Resource Name (ARN) of the newly created layout.
|
|
56
66
|
* @minLength 1
|
|
57
67
|
* @maxLength 500
|
|
58
68
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-layout.html#cfn-cases-layout-layoutarn}
|
|
@@ -67,45 +77,45 @@ export type CasesLayoutAttribs = {
|
|
|
67
77
|
LayoutId: string;
|
|
68
78
|
};
|
|
69
79
|
/**
|
|
70
|
-
*
|
|
80
|
+
* Content specific to `BasicLayout` type. It configures fields in the top panel and More Info tab of agent application.
|
|
71
81
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-layout-basiclayout.html}
|
|
72
82
|
*/
|
|
73
83
|
export type BasicLayout = {
|
|
74
84
|
/**
|
|
75
|
-
*
|
|
85
|
+
* This represents sections in a tab of the page layout.
|
|
76
86
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-layout-basiclayout.html#cfn-cases-layout-basiclayout-moreinfo}
|
|
77
87
|
*/
|
|
78
88
|
MoreInfo?: LayoutSections | undefined;
|
|
79
89
|
/**
|
|
80
|
-
*
|
|
90
|
+
* This represents sections in a panel of the page layout.
|
|
81
91
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-layout-basiclayout.html#cfn-cases-layout-basiclayout-toppanel}
|
|
82
92
|
*/
|
|
83
93
|
TopPanel?: LayoutSections | undefined;
|
|
84
94
|
};
|
|
85
95
|
/**
|
|
86
|
-
*
|
|
96
|
+
* Object for a group of fields and associated properties.
|
|
87
97
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-layout-fieldgroup.html}
|
|
88
98
|
*/
|
|
89
99
|
export type FieldGroup = {
|
|
90
100
|
/**
|
|
91
|
-
*
|
|
101
|
+
* Represents an ordered list containing field related information.
|
|
92
102
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-layout-fieldgroup.html#cfn-cases-layout-fieldgroup-fields}
|
|
93
103
|
*/
|
|
94
104
|
Fields: FieldItem[];
|
|
95
105
|
/**
|
|
96
|
-
*
|
|
106
|
+
* Name of the field group.
|
|
97
107
|
* @maxLength 100
|
|
98
108
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-layout-fieldgroup.html#cfn-cases-layout-fieldgroup-name}
|
|
99
109
|
*/
|
|
100
110
|
Name?: string | undefined;
|
|
101
111
|
};
|
|
102
112
|
/**
|
|
103
|
-
*
|
|
113
|
+
* Object for field related information.
|
|
104
114
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-layout-fielditem.html}
|
|
105
115
|
*/
|
|
106
116
|
export type FieldItem = {
|
|
107
117
|
/**
|
|
108
|
-
*
|
|
118
|
+
* Unique identifier of a field.
|
|
109
119
|
* @minLength 1
|
|
110
120
|
* @maxLength 500
|
|
111
121
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-layout-fielditem.html#cfn-cases-layout-fielditem-id}
|
|
@@ -113,25 +123,25 @@ export type FieldItem = {
|
|
|
113
123
|
Id: string;
|
|
114
124
|
};
|
|
115
125
|
/**
|
|
116
|
-
*
|
|
126
|
+
* Object to store union of different versions of layout content.
|
|
117
127
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-layout-layoutcontent.html}
|
|
118
128
|
*/
|
|
119
129
|
export type LayoutContent = {
|
|
120
130
|
Basic: BasicLayout;
|
|
121
131
|
};
|
|
122
132
|
/**
|
|
123
|
-
*
|
|
133
|
+
* Ordered list containing different kinds of sections that can be added. A LayoutSections object can only contain one section.
|
|
124
134
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-layout-layoutsections.html}
|
|
125
135
|
*/
|
|
126
136
|
export type LayoutSections = {
|
|
127
137
|
/**
|
|
128
|
-
*
|
|
138
|
+
* Ordered list containing different kinds of sections that can be added. A LayoutSections object can only contain one section.
|
|
129
139
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-layout-layoutsections.html#cfn-cases-layout-layoutsections-sections}
|
|
130
140
|
*/
|
|
131
141
|
Sections?: Section[] | undefined;
|
|
132
142
|
};
|
|
133
143
|
/**
|
|
134
|
-
*
|
|
144
|
+
* This represents a sections within a panel or tab of the page layout.
|
|
135
145
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-layout-section.html}
|
|
136
146
|
*/
|
|
137
147
|
export type Section = {
|
|
@@ -1,16 +1,30 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Creates a template in the Cases domain. This template is used to define the case object model (that is, to define what data can be captured on cases) in a Cases domain. A template must have a unique name within a domain, and it must reference existing field IDs and layout IDs. Additionally, multiple fields with same IDs are not allowed within the same Template. A template can be either Active or Inactive, as indicated by its status. Inactive templates cannot be used to create cases.
|
|
4
|
+
*
|
|
5
|
+
* Other template APIs are:
|
|
6
|
+
*
|
|
7
|
+
* - [DeleteTemplate](https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_DeleteTemplate.html)
|
|
8
|
+
* - [GetTemplate](https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_GetTemplate.html)
|
|
9
|
+
* - [ListTemplates](https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_ListTemplates.html)
|
|
10
|
+
* - [UpdateTemplate](https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_UpdateTemplate.html)
|
|
4
11
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-template.html}
|
|
5
12
|
*/
|
|
6
13
|
export type CasesTemplate = ResourceDefinitionWithAttributes<"AWS::Cases::Template", CasesTemplateProps, CasesTemplateAttribs>;
|
|
7
14
|
/**
|
|
8
|
-
*
|
|
15
|
+
* Creates a template in the Cases domain. This template is used to define the case object model (that is, to define what data can be captured on cases) in a Cases domain. A template must have a unique name within a domain, and it must reference existing field IDs and layout IDs. Additionally, multiple fields with same IDs are not allowed within the same Template. A template can be either Active or Inactive, as indicated by its status. Inactive templates cannot be used to create cases.
|
|
16
|
+
*
|
|
17
|
+
* Other template APIs are:
|
|
18
|
+
*
|
|
19
|
+
* - [DeleteTemplate](https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_DeleteTemplate.html)
|
|
20
|
+
* - [GetTemplate](https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_GetTemplate.html)
|
|
21
|
+
* - [ListTemplates](https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_ListTemplates.html)
|
|
22
|
+
* - [UpdateTemplate](https://docs.aws.amazon.com/connect/latest/APIReference/API_connect-cases_UpdateTemplate.html)
|
|
9
23
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-template.html}
|
|
10
24
|
*/
|
|
11
25
|
export type CasesTemplateProps = {
|
|
12
26
|
/**
|
|
13
|
-
* A description
|
|
27
|
+
* A brief description of the template.
|
|
14
28
|
* @maxLength 255
|
|
15
29
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-template.html#cfn-cases-template-description}
|
|
16
30
|
*/
|
|
@@ -23,12 +37,12 @@ export type CasesTemplateProps = {
|
|
|
23
37
|
*/
|
|
24
38
|
DomainId?: string | undefined;
|
|
25
39
|
/**
|
|
26
|
-
*
|
|
40
|
+
* Object to store configuration of layouts associated to the template.
|
|
27
41
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-template.html#cfn-cases-template-layoutconfiguration}
|
|
28
42
|
*/
|
|
29
43
|
LayoutConfiguration?: LayoutConfiguration | undefined;
|
|
30
44
|
/**
|
|
31
|
-
*
|
|
45
|
+
* The template name.
|
|
32
46
|
* @minLength 1
|
|
33
47
|
* @maxLength 100
|
|
34
48
|
* @pattern ^.*[\S]$
|
|
@@ -41,17 +55,17 @@ export type CasesTemplateProps = {
|
|
|
41
55
|
*/
|
|
42
56
|
RequiredFields?: RequiredField[] | undefined;
|
|
43
57
|
/**
|
|
44
|
-
* A list of case rules (also known as case field conditions) on a template.
|
|
58
|
+
* A list of case rules (also known as [case field conditions](https://docs.aws.amazon.com/connect/latest/adminguide/case-field-conditions.html) ) on a template.
|
|
45
59
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-template.html#cfn-cases-template-rules}
|
|
46
60
|
*/
|
|
47
61
|
Rules?: TemplateRule[] | undefined;
|
|
48
62
|
/**
|
|
49
|
-
* The
|
|
63
|
+
* The status of the template.
|
|
50
64
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-template.html#cfn-cases-template-status}
|
|
51
65
|
*/
|
|
52
66
|
Status?: TemplateStatus | undefined;
|
|
53
67
|
/**
|
|
54
|
-
*
|
|
68
|
+
* An array of key-value pairs to apply to this resource.
|
|
55
69
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-template.html#cfn-cases-template-tags}
|
|
56
70
|
*/
|
|
57
71
|
Tags?: Tag[] | undefined;
|
|
@@ -61,13 +75,13 @@ export type CasesTemplateProps = {
|
|
|
61
75
|
*/
|
|
62
76
|
export type CasesTemplateAttribs = {
|
|
63
77
|
/**
|
|
64
|
-
*
|
|
78
|
+
* Timestamp at which the resource was created.
|
|
65
79
|
* @format date-time
|
|
66
80
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-template.html#cfn-cases-template-createdtime}
|
|
67
81
|
*/
|
|
68
82
|
CreatedTime: string;
|
|
69
83
|
/**
|
|
70
|
-
*
|
|
84
|
+
* Timestamp at which the resource was created or last modified.
|
|
71
85
|
* @format date-time
|
|
72
86
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-template.html#cfn-cases-template-lastmodifiedtime}
|
|
73
87
|
*/
|
|
@@ -80,7 +94,7 @@ export type CasesTemplateAttribs = {
|
|
|
80
94
|
*/
|
|
81
95
|
TemplateArn: string;
|
|
82
96
|
/**
|
|
83
|
-
*
|
|
97
|
+
* A unique identifier of a template.
|
|
84
98
|
* @minLength 1
|
|
85
99
|
* @maxLength 500
|
|
86
100
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-template.html#cfn-cases-template-templateid}
|
|
@@ -88,12 +102,12 @@ export type CasesTemplateAttribs = {
|
|
|
88
102
|
TemplateId: string;
|
|
89
103
|
};
|
|
90
104
|
/**
|
|
91
|
-
*
|
|
105
|
+
* Object to store configuration of layouts associated to the template.
|
|
92
106
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-template-layoutconfiguration.html}
|
|
93
107
|
*/
|
|
94
108
|
export type LayoutConfiguration = {
|
|
95
109
|
/**
|
|
96
|
-
*
|
|
110
|
+
* Unique identifier of a layout.
|
|
97
111
|
* @minLength 1
|
|
98
112
|
* @maxLength 500
|
|
99
113
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-template-layoutconfiguration.html#cfn-cases-template-layoutconfiguration-defaultlayout}
|
|
@@ -101,12 +115,12 @@ export type LayoutConfiguration = {
|
|
|
101
115
|
DefaultLayout?: string | undefined;
|
|
102
116
|
};
|
|
103
117
|
/**
|
|
104
|
-
*
|
|
118
|
+
* List of fields that must have a value provided to create a case.
|
|
105
119
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-template-requiredfield.html}
|
|
106
120
|
*/
|
|
107
121
|
export type RequiredField = {
|
|
108
122
|
/**
|
|
109
|
-
*
|
|
123
|
+
* Unique identifier of a field.
|
|
110
124
|
* @minLength 1
|
|
111
125
|
* @maxLength 500
|
|
112
126
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-template-requiredfield.html#cfn-cases-template-requiredfield-fieldid}
|
|
@@ -114,19 +128,19 @@ export type RequiredField = {
|
|
|
114
128
|
FieldId: string;
|
|
115
129
|
};
|
|
116
130
|
/**
|
|
117
|
-
*
|
|
131
|
+
* An association representing a case rule acting upon a field. In the Amazon Connect admin website, case rules are known as *case field conditions* . For more information about case field conditions, see [Add case field conditions to a case template](https://docs.aws.amazon.com/connect/latest/adminguide/case-field-conditions.html) .
|
|
118
132
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-template-templaterule.html}
|
|
119
133
|
*/
|
|
120
134
|
export type TemplateRule = {
|
|
121
135
|
/**
|
|
122
|
-
*
|
|
136
|
+
* Unique identifier of a case rule.
|
|
123
137
|
* @minLength 1
|
|
124
138
|
* @maxLength 500
|
|
125
139
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-template-templaterule.html#cfn-cases-template-templaterule-caseruleid}
|
|
126
140
|
*/
|
|
127
141
|
CaseRuleId: string;
|
|
128
142
|
/**
|
|
129
|
-
*
|
|
143
|
+
* Unique identifier of a field.
|
|
130
144
|
* @minLength 1
|
|
131
145
|
* @maxLength 500
|
|
132
146
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-template-templaterule.html#cfn-cases-template-templaterule-fieldid}
|
|
@@ -24,7 +24,7 @@ export type ConnectContactFlowModuleProps = {
|
|
|
24
24
|
*/
|
|
25
25
|
Description?: string | undefined;
|
|
26
26
|
/**
|
|
27
|
-
*
|
|
27
|
+
* The external invocation configuration for the flow module
|
|
28
28
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-contactflowmodule.html#cfn-connect-contactflowmodule-externalinvocationconfiguration}
|
|
29
29
|
*/
|
|
30
30
|
ExternalInvocationConfiguration?: {
|
|
@@ -47,7 +47,7 @@ export type ConnectContactFlowModuleProps = {
|
|
|
47
47
|
*/
|
|
48
48
|
Name: string;
|
|
49
49
|
/**
|
|
50
|
-
* The
|
|
50
|
+
* The configuration settings for the flow module.
|
|
51
51
|
* @maxLength 256000
|
|
52
52
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-contactflowmodule.html#cfn-connect-contactflowmodule-settings}
|
|
53
53
|
*/
|
|
@@ -64,6 +64,7 @@ export type EC2ClientVpnEndpointProps = {
|
|
|
64
64
|
*/
|
|
65
65
|
DnsServers?: string[] | undefined;
|
|
66
66
|
/**
|
|
67
|
+
* The IP address type of the Client VPN endpoint. Possible values are `ipv4` for IPv4 addressing only, `ipv6` for IPv6 addressing only, or `dual-stack` for both IPv4 and IPv6 addressing.
|
|
67
68
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-endpointipaddresstype}
|
|
68
69
|
*/
|
|
69
70
|
EndpointIpAddressType?: string | undefined;
|
|
@@ -108,6 +109,7 @@ export type EC2ClientVpnEndpointProps = {
|
|
|
108
109
|
*/
|
|
109
110
|
TagSpecifications?: TagSpecification[] | undefined;
|
|
110
111
|
/**
|
|
112
|
+
* The IP address type of the Client VPN endpoint. Possible values are either `ipv4` for IPv4 addressing only, `ipv6` for IPv6 addressing only, or `dual-stack` for both IPv4 and IPv6 addressing.
|
|
111
113
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-clientvpnendpoint.html#cfn-ec2-clientvpnendpoint-trafficipaddresstype}
|
|
112
114
|
*/
|
|
113
115
|
TrafficIpAddressType?: string | undefined;
|
|
@@ -340,7 +340,9 @@ export type FleetLaunchTemplateConfigRequest = {
|
|
|
340
340
|
*/
|
|
341
341
|
export type FleetLaunchTemplateOverridesRequest = {
|
|
342
342
|
/**
|
|
343
|
-
* The Availability Zone in which to launch the instances.
|
|
343
|
+
* The Availability Zone in which to launch the instances. For example, `us-east-2a` .
|
|
344
|
+
*
|
|
345
|
+
* Either `AvailabilityZone` or `AvailabilityZoneId` must be specified in the request, but not both.
|
|
344
346
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-fleetlaunchtemplateoverridesrequest.html#cfn-ec2-ec2fleet-fleetlaunchtemplateoverridesrequest-availabilityzone}
|
|
345
347
|
*/
|
|
346
348
|
AvailabilityZone?: string | undefined;
|
|
@@ -696,7 +696,9 @@ export type LaunchTemplateConfig = {
|
|
|
696
696
|
*/
|
|
697
697
|
export type LaunchTemplateOverrides = {
|
|
698
698
|
/**
|
|
699
|
-
* The Availability Zone in which to launch the instances.
|
|
699
|
+
* The Availability Zone in which to launch the instances. For example, `us-east-2a` .
|
|
700
|
+
*
|
|
701
|
+
* Either `AvailabilityZone` or `AvailabilityZoneId` must be specified in the request, but not both.
|
|
700
702
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-launchtemplateoverrides.html#cfn-ec2-spotfleet-launchtemplateoverrides-availabilityzone}
|
|
701
703
|
*/
|
|
702
704
|
AvailabilityZone?: string | undefined;
|
|
@@ -133,6 +133,16 @@ export type BaselineEbsBandwidthMbpsRequest = {
|
|
|
133
133
|
*/
|
|
134
134
|
export type InstanceLaunchTemplate = {
|
|
135
135
|
/**
|
|
136
|
+
* The capacity option type. This determines whether Amazon ECS launches On-Demand or Spot Instances for your managed instance capacity provider.
|
|
137
|
+
*
|
|
138
|
+
* Valid values are:
|
|
139
|
+
*
|
|
140
|
+
* - `ON_DEMAND` - Launches standard On-Demand Instances. On-Demand Instances provide predictable pricing and availability.
|
|
141
|
+
* - `SPOT` - Launches Spot Instances that use spare Amazon EC2 capacity at reduced cost. Spot Instances can be interrupted by Amazon EC2 with a two-minute notification when the capacity is needed back.
|
|
142
|
+
*
|
|
143
|
+
* The default is On-Demand
|
|
144
|
+
*
|
|
145
|
+
* For more information about Amazon EC2 capacity options, see [Instance purchasing options](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instance-purchasing-options.html) in the *Amazon EC2 User Guide* .
|
|
136
146
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-capacityprovider-instancelaunchtemplate.html#cfn-ecs-capacityprovider-instancelaunchtemplate-capacityoptiontype}
|
|
137
147
|
*/
|
|
138
148
|
CapacityOptionType?: "ON_DEMAND" | "SPOT" | undefined;
|
|
@@ -93,50 +93,62 @@ export type ECSExpressGatewayServiceAttribs = {
|
|
|
93
93
|
*/
|
|
94
94
|
CreatedAt: string;
|
|
95
95
|
/**
|
|
96
|
+
* The list of Auto Scaling policy ARNs associated with the express service.
|
|
96
97
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-autoscalingarns.html#cfn-ecs-expressgatewayservice-autoscalingarns-applicationautoscalingpolicies}
|
|
97
98
|
*/
|
|
98
99
|
"ECSManagedResourceArns.AutoScaling.ApplicationAutoScalingPolicies": string[];
|
|
99
100
|
/**
|
|
101
|
+
* The Auto Scaling Scalable Target ARN associated with the express service.
|
|
100
102
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-autoscalingarns.html#cfn-ecs-expressgatewayservice-autoscalingarns-scalabletarget}
|
|
101
103
|
*/
|
|
102
104
|
"ECSManagedResourceArns.AutoScaling.ScalableTarget": string;
|
|
103
105
|
/**
|
|
106
|
+
* The Certificate ARN associated with the express service.
|
|
104
107
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-ingresspatharns.html#cfn-ecs-expressgatewayservice-ingresspatharns-certificatearn}
|
|
105
108
|
*/
|
|
106
109
|
"ECSManagedResourceArns.IngressPath.CertificateArn": string;
|
|
107
110
|
/**
|
|
111
|
+
* The ARN of the Load Balancer listener associated with the express service.
|
|
108
112
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-ingresspatharns.html#cfn-ecs-expressgatewayservice-ingresspatharns-listenerarn}
|
|
109
113
|
*/
|
|
110
114
|
"ECSManagedResourceArns.IngressPath.ListenerArn": string;
|
|
111
115
|
/**
|
|
116
|
+
* The ARN of the Load Balancer listener rule associated with the express service.
|
|
112
117
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-ingresspatharns.html#cfn-ecs-expressgatewayservice-ingresspatharns-listenerrulearn}
|
|
113
118
|
*/
|
|
114
119
|
"ECSManagedResourceArns.IngressPath.ListenerRuleArn": string;
|
|
115
120
|
/**
|
|
121
|
+
* The ARN of the Load Balancer associated with the express service.
|
|
116
122
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-ingresspatharns.html#cfn-ecs-expressgatewayservice-ingresspatharns-loadbalancerarn}
|
|
117
123
|
*/
|
|
118
124
|
"ECSManagedResourceArns.IngressPath.LoadBalancerArn": string;
|
|
119
125
|
/**
|
|
126
|
+
* The list of Load Balancer Security Group ARNs associated with the express service.
|
|
120
127
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-ingresspatharns.html#cfn-ecs-expressgatewayservice-ingresspatharns-loadbalancersecuritygroups}
|
|
121
128
|
*/
|
|
122
129
|
"ECSManagedResourceArns.IngressPath.LoadBalancerSecurityGroups": string[];
|
|
123
130
|
/**
|
|
131
|
+
* The list of Target Group ARNs associated with the express service.
|
|
124
132
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-ingresspatharns.html#cfn-ecs-expressgatewayservice-ingresspatharns-targetgrouparns}
|
|
125
133
|
*/
|
|
126
134
|
"ECSManagedResourceArns.IngressPath.TargetGroupArns": string[];
|
|
127
135
|
/**
|
|
136
|
+
* The list of Log Group ARNs associated with the express service.
|
|
128
137
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-ecsmanagedresourcearns.html#cfn-ecs-expressgatewayservice-ecsmanagedresourcearns-loggroups}
|
|
129
138
|
*/
|
|
130
139
|
"ECSManagedResourceArns.LogGroups": string[];
|
|
131
140
|
/**
|
|
141
|
+
* The list of Metric Alarm ARNs associated with the express service.
|
|
132
142
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-ecsmanagedresourcearns.html#cfn-ecs-expressgatewayservice-ecsmanagedresourcearns-metricalarms}
|
|
133
143
|
*/
|
|
134
144
|
"ECSManagedResourceArns.MetricAlarms": string[];
|
|
135
145
|
/**
|
|
146
|
+
* The list of Security Group ARNs associated with the express service.
|
|
136
147
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-ecsmanagedresourcearns.html#cfn-ecs-expressgatewayservice-ecsmanagedresourcearns-servicesecuritygroups}
|
|
137
148
|
*/
|
|
138
149
|
"ECSManagedResourceArns.ServiceSecurityGroups": string[];
|
|
139
150
|
/**
|
|
151
|
+
* The Endpoint of the express service.
|
|
140
152
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-expressgatewayservice.html#cfn-ecs-expressgatewayservice-endpoint}
|
|
141
153
|
*/
|
|
142
154
|
Endpoint: string;
|