@awboost/cfn-resource-types 0.1.3 → 0.1.4

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.
@@ -175,6 +175,24 @@ export type ServiceConnectService = {
175
175
  DiscoveryName?: string;
176
176
  IngressPortOverride?: number;
177
177
  PortName: string;
178
+ Timeout?: TimeoutConfiguration;
179
+ Tls?: ServiceConnectTlsConfiguration;
180
+ };
181
+ /**
182
+ * Type definition for `AWS::ECS::Service.ServiceConnectTlsCertificateAuthority`.
183
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-serviceconnecttlscertificateauthority.html}
184
+ */
185
+ export type ServiceConnectTlsCertificateAuthority = {
186
+ AwsPcaAuthorityArn?: string;
187
+ };
188
+ /**
189
+ * Type definition for `AWS::ECS::Service.ServiceConnectTlsConfiguration`.
190
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-serviceconnecttlsconfiguration.html}
191
+ */
192
+ export type ServiceConnectTlsConfiguration = {
193
+ IssuerCertificateAuthority: ServiceConnectTlsCertificateAuthority;
194
+ KmsKey?: string;
195
+ RoleArn?: string;
178
196
  };
179
197
  /**
180
198
  * Type definition for `AWS::ECS::Service.ServiceManagedEBSVolumeConfiguration`.
@@ -218,6 +236,14 @@ export type Tag = {
218
236
  Key?: string;
219
237
  Value?: string;
220
238
  };
239
+ /**
240
+ * Type definition for `AWS::ECS::Service.TimeoutConfiguration`.
241
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-timeoutconfiguration.html}
242
+ */
243
+ export type TimeoutConfiguration = {
244
+ IdleTimeoutSeconds?: number;
245
+ PerRequestTimeoutSeconds?: number;
246
+ };
221
247
  /**
222
248
  * Resource Type definition for AWS::ECS::Service
223
249
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html}
@@ -22,7 +22,7 @@ export type SSMDocumentProperties = {
22
22
  /**
23
23
  * The type of document to create.
24
24
  */
25
- DocumentType?: "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "Automation" | "Automation.ChangeTemplate" | "ChangeCalendar" | "CloudFormation" | "Command" | "DeploymentStrategy" | "Package" | "Policy" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "Session";
25
+ DocumentType?: "ApplicationConfiguration" | "ApplicationConfigurationSchema" | "Automation" | "Automation.ChangeTemplate" | "ChangeCalendar" | "CloudFormation" | "Command" | "DeploymentStrategy" | "Package" | "Policy" | "ProblemAnalysis" | "ProblemAnalysisTemplate" | "Session" | "OpsPack";
26
26
  /**
27
27
  * A name for the Systems Manager document.
28
28
  * @pattern `^[a-zA-Z0-9_\-.]{3,128}$`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },