@awboost/cfn-resource-types 0.1.189 → 0.1.191
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/AWS-ApplicationInsights-Application.d.ts +7 -0
- package/lib/AWS-EC2-EC2Fleet.d.ts +1 -1
- package/lib/AWS-EC2-LaunchTemplate.d.ts +11 -12
- package/lib/AWS-EC2-SpotFleet.d.ts +1 -1
- package/lib/AWS-ECS-Service.d.ts +14 -3
- package/lib/AWS-Events-Connection.d.ts +1 -1
- package/lib/AWS-GameLift-Alias.d.ts +1 -1
- package/lib/AWS-GameLift-ContainerGroupDefinition.d.ts +0 -239
- package/lib/AWS-GameLift-Fleet.d.ts +1 -74
- package/lib/AWS-InspectorV2-CisScanConfiguration.d.ts +1 -1
- package/lib/AWS-QuickSight-Analysis.d.ts +1 -1
- package/lib/AWS-QuickSight-Dashboard.d.ts +1 -1
- package/lib/AWS-QuickSight-Template.d.ts +1 -1
- package/lib/AWS-Scheduler-Schedule.d.ts +4 -4
- package/lib/AWS-Scheduler-ScheduleGroup.d.ts +1 -1
- package/package.json +1 -1
|
@@ -54,6 +54,13 @@ export type ApplicationInsightsApplicationProperties = {
|
|
|
54
54
|
* @pattern `[a-zA-Z0-9.-_]*`
|
|
55
55
|
*/
|
|
56
56
|
ResourceGroupName: string;
|
|
57
|
+
/**
|
|
58
|
+
* Application Insights sends notifications to this SNS topic whenever there is a problem update in the associated application.
|
|
59
|
+
* @minLength `20`
|
|
60
|
+
* @maxLength `300`
|
|
61
|
+
* @pattern `^arn:aws(-[\w]+)*:[\w\d-]+:([\w\d-]*)?:[\w\d_-]*([:/].+)*$`
|
|
62
|
+
*/
|
|
63
|
+
SNSNotificationArn?: string;
|
|
57
64
|
/**
|
|
58
65
|
* The tags of Application Insights application.
|
|
59
66
|
* @minLength `1`
|
|
@@ -117,7 +117,7 @@ export type InstanceRequirementsRequest = {
|
|
|
117
117
|
BareMetal?: "included" | "required" | "excluded";
|
|
118
118
|
BaselineEbsBandwidthMbps?: BaselineEbsBandwidthMbpsRequest;
|
|
119
119
|
BurstablePerformance?: "included" | "required" | "excluded";
|
|
120
|
-
CpuManufacturers?: ("intel" | "amd" | "amazon-web-services")[];
|
|
120
|
+
CpuManufacturers?: ("intel" | "amd" | "amazon-web-services" | "apple")[];
|
|
121
121
|
ExcludedInstanceTypes?: string[];
|
|
122
122
|
InstanceGenerations?: ("current" | "previous")[];
|
|
123
123
|
LocalStorage?: "included" | "required" | "excluded";
|
|
@@ -22,7 +22,7 @@ export type EC2LaunchTemplateProperties = {
|
|
|
22
22
|
LaunchTemplateName?: string;
|
|
23
23
|
/**
|
|
24
24
|
* The tags to apply to the launch template on creation. To tag the launch template, the resource type must be ``launch-template``.
|
|
25
|
-
To specify the tags for resources that are created
|
|
25
|
+
To specify the tags for the resources that are created when an instance is launched, you must use [TagSpecifications](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-tagspecifications).
|
|
26
26
|
*/
|
|
27
27
|
TagSpecifications?: LaunchTemplateTagSpecification[];
|
|
28
28
|
/**
|
|
@@ -221,7 +221,7 @@ export type Ebs = {
|
|
|
221
221
|
*/
|
|
222
222
|
Iops?: number;
|
|
223
223
|
/**
|
|
224
|
-
*
|
|
224
|
+
* The ARN of the symmetric KMSlong (KMS) CMK used for encryption.
|
|
225
225
|
*/
|
|
226
226
|
KmsKeyId?: string;
|
|
227
227
|
/**
|
|
@@ -355,7 +355,7 @@ export type InstanceMarketOptions = {
|
|
|
355
355
|
|
|
356
356
|
If you specify ``InstanceRequirements``, you can't specify ``InstanceType``.
|
|
357
357
|
Attribute-based instance type selection is only supported when using Auto Scaling groups, EC2 Fleet, and Spot Fleet to launch instances. If you plan to use the launch template in the [launch instance wizard](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-instance-wizard.html), or with the [RunInstances](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html) API or [AWS::EC2::Instance](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html) AWS CloudFormation resource, you can't specify ``InstanceRequirements``.
|
|
358
|
-
For more information, see [
|
|
358
|
+
For more information, see [Attribute-based instance type selection for EC2 Fleet](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html), [Attribute-based instance type selection for Spot Fleet](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-fleet-attribute-based-instance-type-selection.html), and [Spot placement score](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-placement-score.html) in the *Amazon EC2 User Guide*.
|
|
359
359
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-instancerequirements.html}
|
|
360
360
|
*/
|
|
361
361
|
export type InstanceRequirements = {
|
|
@@ -403,6 +403,7 @@ export type InstanceRequirements = {
|
|
|
403
403
|
* The accelerator types that must be on the instance type.
|
|
404
404
|
+ For instance types with GPU accelerators, specify ``gpu``.
|
|
405
405
|
+ For instance types with FPGA accelerators, specify ``fpga``.
|
|
406
|
+
+ For instance types with inference accelerators, specify ``inference``.
|
|
406
407
|
|
|
407
408
|
Default: Any accelerator type
|
|
408
409
|
*/
|
|
@@ -617,8 +618,7 @@ export type LaunchTemplateData = {
|
|
|
617
618
|
*/
|
|
618
619
|
ElasticGpuSpecifications?: ElasticGpuSpecification[];
|
|
619
620
|
/**
|
|
620
|
-
*
|
|
621
|
-
An elastic inference accelerator to associate with the instance. Elastic inference accelerators are a resource you can attach to your Amazon EC2 instances to accelerate your Deep Learning (DL) inference workloads.
|
|
621
|
+
* An elastic inference accelerator to associate with the instance. Elastic inference accelerators are a resource you can attach to your Amazon EC2 instances to accelerate your Deep Learning (DL) inference workloads.
|
|
622
622
|
You cannot specify accelerators from different generations in the same request.
|
|
623
623
|
Starting April 15, 2023, AWS will not onboard new customers to Amazon Elastic Inference (EI), and will help current customers migrate their workloads to options that offer better price and performance. After April 15, 2023, new customers will not be able to launch instances with Amazon EI accelerators in Amazon SageMaker, Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI at least once during the past 30-day period are considered current customers and will be able to continue using the service.
|
|
624
624
|
*/
|
|
@@ -666,7 +666,7 @@ export type LaunchTemplateData = {
|
|
|
666
666
|
|
|
667
667
|
If you specify ``InstanceRequirements``, you can't specify ``InstanceType``.
|
|
668
668
|
Attribute-based instance type selection is only supported when using Auto Scaling groups, EC2 Fleet, and Spot Fleet to launch instances. If you plan to use the launch template in the [launch instance wizard](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-instance-wizard.html), or with the [RunInstances](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html) API or [AWS::EC2::Instance](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html) AWS CloudFormation resource, you can't specify ``InstanceRequirements``.
|
|
669
|
-
For more information, see [
|
|
669
|
+
For more information, see [Attribute-based instance type selection for EC2 Fleet](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html), [Attribute-based instance type selection for Spot Fleet](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-fleet-attribute-based-instance-type-selection.html), and [Spot placement score](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-placement-score.html) in the *Amazon EC2 User Guide*.
|
|
670
670
|
*/
|
|
671
671
|
InstanceRequirements?: InstanceRequirements;
|
|
672
672
|
/**
|
|
@@ -728,7 +728,8 @@ export type LaunchTemplateData = {
|
|
|
728
728
|
*/
|
|
729
729
|
SecurityGroups?: string[];
|
|
730
730
|
/**
|
|
731
|
-
* The tags to apply to resources that are created during instance launch.
|
|
731
|
+
* The tags to apply to the resources that are created during instance launch.
|
|
732
|
+
To tag a resource after it has been created, see [CreateTags](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateTags.html).
|
|
732
733
|
To tag the launch template itself, use [TagSpecifications](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html#cfn-ec2-launchtemplate-tagspecifications).
|
|
733
734
|
*/
|
|
734
735
|
TagSpecifications?: TagSpecification[];
|
|
@@ -758,7 +759,6 @@ export type LaunchTemplateElasticInferenceAccelerator = {
|
|
|
758
759
|
/**
|
|
759
760
|
* Type definition for `AWS::EC2::LaunchTemplate.LaunchTemplateTagSpecification`.
|
|
760
761
|
* Specifies the tags to apply to the launch template during creation.
|
|
761
|
-
To specify the tags for the resources that are created during instance launch, use [AWS::EC2::LaunchTemplate TagSpecification](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-tagspecification.html).
|
|
762
762
|
``LaunchTemplateTagSpecification`` is a property of [AWS::EC2::LaunchTemplate](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html).
|
|
763
763
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatetagspecification.html}
|
|
764
764
|
*/
|
|
@@ -932,10 +932,9 @@ export type NetworkInterface = {
|
|
|
932
932
|
*/
|
|
933
933
|
Groups?: string[];
|
|
934
934
|
/**
|
|
935
|
-
* The type of network interface. To create an Elastic Fabric Adapter (EFA), specify ``efa
|
|
935
|
+
* The type of network interface. To create an Elastic Fabric Adapter (EFA), specify ``efa``. For more information, see [Elastic Fabric Adapter](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/efa.html) in the *Amazon EC2 User Guide*.
|
|
936
936
|
If you are not creating an EFA, specify ``interface`` or omit this parameter.
|
|
937
|
-
|
|
938
|
-
Valid values: ``interface`` | ``efa`` | ``efa-only``
|
|
937
|
+
Valid values: ``interface`` | ``efa``
|
|
939
938
|
*/
|
|
940
939
|
InterfaceType?: string;
|
|
941
940
|
/**
|
|
@@ -1136,7 +1135,7 @@ export type Tag = {
|
|
|
1136
1135
|
};
|
|
1137
1136
|
/**
|
|
1138
1137
|
* Type definition for `AWS::EC2::LaunchTemplate.TagSpecification`.
|
|
1139
|
-
* Specifies the tags to apply to
|
|
1138
|
+
* Specifies the tags to apply to a resource when the resource is created for the launch template.
|
|
1140
1139
|
``TagSpecification`` is a property type of [TagSpecifications](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-tagspecifications). [TagSpecifications](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-tagspecifications) is a property of [AWS::EC2::LaunchTemplate LaunchTemplateData](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html).
|
|
1141
1140
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-tagspecification.html}
|
|
1142
1141
|
*/
|
|
@@ -140,7 +140,7 @@ export type InstanceRequirementsRequest = {
|
|
|
140
140
|
BareMetal?: "included" | "required" | "excluded";
|
|
141
141
|
BaselineEbsBandwidthMbps?: BaselineEbsBandwidthMbpsRequest;
|
|
142
142
|
BurstablePerformance?: "included" | "required" | "excluded";
|
|
143
|
-
CpuManufacturers?: ("intel" | "amd" | "amazon-web-services")[];
|
|
143
|
+
CpuManufacturers?: ("intel" | "amd" | "amazon-web-services" | "apple")[];
|
|
144
144
|
ExcludedInstanceTypes?: string[];
|
|
145
145
|
InstanceGenerations?: ("current" | "previous")[];
|
|
146
146
|
LocalStorage?: "included" | "required" | "excluded";
|
package/lib/AWS-ECS-Service.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
7
7
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html}
|
|
8
8
|
*/
|
|
9
9
|
export type ECSServiceProperties = {
|
|
10
|
+
AvailabilityZoneRebalancing?: "ENABLED" | "DISABLED";
|
|
10
11
|
/**
|
|
11
12
|
* The capacity provider strategy to use for the service.
|
|
12
13
|
If a ``capacityProviderStrategy`` is specified, the ``launchType`` parameter must be omitted. If no ``capacityProviderStrategy`` or ``launchType`` is specified, the ``defaultCapacityProviderStrategy`` for the cluster is used.
|
|
@@ -18,7 +19,7 @@ export type ECSServiceProperties = {
|
|
|
18
19
|
*/
|
|
19
20
|
Cluster?: string;
|
|
20
21
|
/**
|
|
21
|
-
* Optional deployment parameters that control how many tasks run during the deployment and the
|
|
22
|
+
* Optional deployment parameters that control how many tasks run during the deployment and the ordering of stopping and starting tasks.
|
|
22
23
|
*/
|
|
23
24
|
DeploymentConfiguration?: DeploymentConfiguration;
|
|
24
25
|
/**
|
|
@@ -127,6 +128,7 @@ export type ECSServiceProperties = {
|
|
|
127
128
|
* The configuration for a volume specified in the task definition as a volume that is configured at launch time. Currently, the only supported volume type is an Amazon EBS volume.
|
|
128
129
|
*/
|
|
129
130
|
VolumeConfigurations?: ServiceVolumeConfiguration[];
|
|
131
|
+
VpcLatticeConfigurations?: VpcLatticeConfiguration[];
|
|
130
132
|
};
|
|
131
133
|
/**
|
|
132
134
|
* Attribute type definition for `AWS::ECS::Service`.
|
|
@@ -222,7 +224,7 @@ export type DeploymentCircuitBreaker = {
|
|
|
222
224
|
};
|
|
223
225
|
/**
|
|
224
226
|
* Type definition for `AWS::ECS::Service.DeploymentConfiguration`.
|
|
225
|
-
* Optional deployment parameters that control how many tasks run during
|
|
227
|
+
* Optional deployment parameters that control how many tasks run during a deployment and the ordering of stopping and starting tasks.
|
|
226
228
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html}
|
|
227
229
|
*/
|
|
228
230
|
export type DeploymentConfiguration = {
|
|
@@ -313,7 +315,7 @@ export type LoadBalancer = {
|
|
|
313
315
|
*/
|
|
314
316
|
ContainerPort?: number;
|
|
315
317
|
/**
|
|
316
|
-
* The name of the load balancer to associate with the service or task set.
|
|
318
|
+
* The name of the load balancer to associate with the Amazon ECS service or task set.
|
|
317
319
|
If you are using an Application Load Balancer or a Network Load Balancer the load balancer name parameter should be omitted.
|
|
318
320
|
*/
|
|
319
321
|
LoadBalancerName?: string;
|
|
@@ -705,6 +707,15 @@ export type TimeoutConfiguration = {
|
|
|
705
707
|
*/
|
|
706
708
|
PerRequestTimeoutSeconds?: number;
|
|
707
709
|
};
|
|
710
|
+
/**
|
|
711
|
+
* Type definition for `AWS::ECS::Service.VpcLatticeConfiguration`.
|
|
712
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-vpclatticeconfiguration.html}
|
|
713
|
+
*/
|
|
714
|
+
export type VpcLatticeConfiguration = {
|
|
715
|
+
PortName: string;
|
|
716
|
+
RoleArn: string;
|
|
717
|
+
TargetGroupArn: string;
|
|
718
|
+
};
|
|
708
719
|
/**
|
|
709
720
|
* The ``AWS::ECS::Service`` resource creates an Amazon Elastic Container Service (Amazon ECS) service that runs and maintains the requested number of tasks and associated load balancers.
|
|
710
721
|
The stack update fails if you change any properties that require replacement and at least one ECS Service Connect ``ServiceConnectConfiguration`` property the is configured. This is because AWS CloudFormation creates the replacement service first, but each ``ServiceConnectService`` must have a name that is unique in the namespace.
|
|
@@ -32,7 +32,7 @@ export type EventsConnectionAttributes = {
|
|
|
32
32
|
Arn: string;
|
|
33
33
|
/**
|
|
34
34
|
* The arn of the secrets manager secret created in the customer account.
|
|
35
|
-
* @pattern `^arn:aws([a-z]|\-)*:secretsmanager:([a-z]|\d|\-)*:([0-9]{12})?:secret:[\/_+=\.@\-A-Za-z0-9]+$`
|
|
35
|
+
* @pattern `^arn:aws([a-z]|\-)*:secretsmanager:([a-z]|\d|\-)*:([0-9]{12})?:secret:([a-z]|\d|\-)*(!)*[\/_+=\.@\-A-Za-z0-9]+$`
|
|
36
36
|
*/
|
|
37
37
|
SecretArn: string;
|
|
38
38
|
};
|
|
@@ -40,7 +40,7 @@ export type GameLiftAliasAttributes = {
|
|
|
40
40
|
export type RoutingStrategy = {
|
|
41
41
|
/**
|
|
42
42
|
* A unique identifier for a fleet that the alias points to. If you specify SIMPLE for the Type property, you must specify this property.
|
|
43
|
-
* @pattern `^fleet
|
|
43
|
+
* @pattern `^[a-z]*fleet-[a-zA-Z0-9\-]+`
|
|
44
44
|
*/
|
|
45
45
|
FleetId?: string;
|
|
46
46
|
/**
|
|
@@ -5,12 +5,6 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-containergroupdefinition.html}
|
|
6
6
|
*/
|
|
7
7
|
export type GameLiftContainerGroupDefinitionProperties = {
|
|
8
|
-
/**
|
|
9
|
-
* A collection of container definitions that define the containers in this group.
|
|
10
|
-
* @minLength `1`
|
|
11
|
-
* @maxLength `10`
|
|
12
|
-
*/
|
|
13
|
-
ContainerDefinitions: ContainerDefinition[];
|
|
14
8
|
/**
|
|
15
9
|
* A descriptive label for the container group definition.
|
|
16
10
|
* @minLength `1`
|
|
@@ -22,10 +16,6 @@ export type GameLiftContainerGroupDefinitionProperties = {
|
|
|
22
16
|
* The operating system of the container group
|
|
23
17
|
*/
|
|
24
18
|
OperatingSystem: "AMAZON_LINUX_2023";
|
|
25
|
-
/**
|
|
26
|
-
* Specifies whether the container group includes replica or daemon containers.
|
|
27
|
-
*/
|
|
28
|
-
SchedulingStrategy?: "REPLICA" | "DAEMON";
|
|
29
19
|
/**
|
|
30
20
|
* A specific ContainerGroupDefinition version to be updated
|
|
31
21
|
* @min `0`
|
|
@@ -43,36 +33,12 @@ export type GameLiftContainerGroupDefinitionProperties = {
|
|
|
43
33
|
* @maxLength `200`
|
|
44
34
|
*/
|
|
45
35
|
Tags?: Tag[];
|
|
46
|
-
/**
|
|
47
|
-
* The maximum number of CPU units reserved for this container group. The value is expressed as an integer amount of CPU units. (1 vCPU is equal to 1024 CPU units.)
|
|
48
|
-
* @min `128`
|
|
49
|
-
* @max `10240`
|
|
50
|
-
*/
|
|
51
|
-
TotalCpuLimit: number;
|
|
52
|
-
/**
|
|
53
|
-
* The maximum amount of memory (in MiB) to allocate for this container group.
|
|
54
|
-
* @min `4`
|
|
55
|
-
* @max `1024000`
|
|
56
|
-
*/
|
|
57
|
-
TotalMemoryLimit: number;
|
|
58
36
|
};
|
|
59
37
|
/**
|
|
60
38
|
* Attribute type definition for `AWS::GameLift::ContainerGroupDefinition`.
|
|
61
39
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-containergroupdefinition.html#aws-resource-gamelift-containergroupdefinition-return-values}
|
|
62
40
|
*/
|
|
63
41
|
export type GameLiftContainerGroupDefinitionAttributes = {
|
|
64
|
-
/**
|
|
65
|
-
* A collection of container definitions that define the containers in this group.
|
|
66
|
-
* @minLength `1`
|
|
67
|
-
* @maxLength `10`
|
|
68
|
-
*/
|
|
69
|
-
ContainerDefinitions: {
|
|
70
|
-
/**
|
|
71
|
-
* The digest of the container image.
|
|
72
|
-
* @pattern `^sha256:[a-fA-F0-9]{64}$`
|
|
73
|
-
*/
|
|
74
|
-
ResolvedImageDigest: string;
|
|
75
|
-
}[];
|
|
76
42
|
/**
|
|
77
43
|
* The Amazon Resource Name (ARN) that is assigned to a Amazon GameLift container group resource and uniquely identifies it across all AWS Regions.
|
|
78
44
|
* @minLength `1`
|
|
@@ -93,211 +59,6 @@ export type GameLiftContainerGroupDefinitionAttributes = {
|
|
|
93
59
|
*/
|
|
94
60
|
StatusReason: string;
|
|
95
61
|
};
|
|
96
|
-
/**
|
|
97
|
-
* Type definition for `AWS::GameLift::ContainerGroupDefinition.ContainerDefinition`.
|
|
98
|
-
* Details about a container that is used in a container fleet
|
|
99
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-containerdefinition.html}
|
|
100
|
-
*/
|
|
101
|
-
export type ContainerDefinition = {
|
|
102
|
-
/**
|
|
103
|
-
* The command that's passed to the container.
|
|
104
|
-
* @minLength `1`
|
|
105
|
-
* @maxLength `20`
|
|
106
|
-
*/
|
|
107
|
-
Command?: string[];
|
|
108
|
-
/**
|
|
109
|
-
* A descriptive label for the container definition. Container definition names must be unique with a container group definition.
|
|
110
|
-
* @minLength `1`
|
|
111
|
-
* @maxLength `128`
|
|
112
|
-
* @pattern `^[a-zA-Z0-9-]+$`
|
|
113
|
-
*/
|
|
114
|
-
ContainerName: string;
|
|
115
|
-
/**
|
|
116
|
-
* The maximum number of CPU units reserved for this container. The value is expressed as an integer amount of CPU units. 1 vCPU is equal to 1024 CPU units
|
|
117
|
-
* @min `1`
|
|
118
|
-
* @max `10240`
|
|
119
|
-
*/
|
|
120
|
-
Cpu?: number;
|
|
121
|
-
/**
|
|
122
|
-
* A list of container dependencies that determines when this container starts up and shuts down. For container groups with multiple containers, dependencies let you define a startup/shutdown sequence across the containers.
|
|
123
|
-
* @minLength `1`
|
|
124
|
-
* @maxLength `10`
|
|
125
|
-
*/
|
|
126
|
-
DependsOn?: ContainerDependency[];
|
|
127
|
-
/**
|
|
128
|
-
* The entry point that's passed to the container so that it will run as an executable. If there are multiple arguments, each argument is a string in the array.
|
|
129
|
-
* @minLength `1`
|
|
130
|
-
* @maxLength `20`
|
|
131
|
-
*/
|
|
132
|
-
EntryPoint?: string[];
|
|
133
|
-
/**
|
|
134
|
-
* The environment variables to pass to a container.
|
|
135
|
-
* @minLength `1`
|
|
136
|
-
* @maxLength `20`
|
|
137
|
-
*/
|
|
138
|
-
Environment?: ContainerEnvironment[];
|
|
139
|
-
/**
|
|
140
|
-
* Specifies if the container is essential. If an essential container fails a health check, then all containers in the container group will be restarted. You must specify exactly 1 essential container in a container group.
|
|
141
|
-
*/
|
|
142
|
-
Essential?: boolean;
|
|
143
|
-
/**
|
|
144
|
-
* Specifies how the health of the containers will be checked.
|
|
145
|
-
*/
|
|
146
|
-
HealthCheck?: ContainerHealthCheck;
|
|
147
|
-
/**
|
|
148
|
-
* Specifies the image URI of this container.
|
|
149
|
-
* @minLength `1`
|
|
150
|
-
* @maxLength `255`
|
|
151
|
-
* @pattern `^[a-zA-Z0-9-_\.@\/:]+$`
|
|
152
|
-
*/
|
|
153
|
-
ImageUri: string;
|
|
154
|
-
/**
|
|
155
|
-
* Specifies how much memory is available to the container. You must specify at least this parameter or the TotalMemoryLimit parameter of the ContainerGroupDefinition.
|
|
156
|
-
*/
|
|
157
|
-
MemoryLimits?: MemoryLimits;
|
|
158
|
-
/**
|
|
159
|
-
* Defines the ports on the container.
|
|
160
|
-
*/
|
|
161
|
-
PortConfiguration?: PortConfiguration;
|
|
162
|
-
/**
|
|
163
|
-
* The working directory to run commands inside the container in.
|
|
164
|
-
* @minLength `1`
|
|
165
|
-
* @maxLength `255`
|
|
166
|
-
* @pattern `^.*$`
|
|
167
|
-
*/
|
|
168
|
-
WorkingDirectory?: string;
|
|
169
|
-
};
|
|
170
|
-
/**
|
|
171
|
-
* Type definition for `AWS::GameLift::ContainerGroupDefinition.ContainerDependency`.
|
|
172
|
-
* A dependency that impacts a container's startup and shutdown.
|
|
173
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-containerdependency.html}
|
|
174
|
-
*/
|
|
175
|
-
export type ContainerDependency = {
|
|
176
|
-
/**
|
|
177
|
-
* The type of dependency.
|
|
178
|
-
*/
|
|
179
|
-
Condition: "START" | "COMPLETE" | "SUCCESS" | "HEALTHY";
|
|
180
|
-
/**
|
|
181
|
-
* A descriptive label for the container definition. The container being defined depends on this container's condition.
|
|
182
|
-
* @minLength `1`
|
|
183
|
-
* @maxLength `128`
|
|
184
|
-
* @pattern `^[a-zA-Z0-9-]+$`
|
|
185
|
-
*/
|
|
186
|
-
ContainerName: string;
|
|
187
|
-
};
|
|
188
|
-
/**
|
|
189
|
-
* Type definition for `AWS::GameLift::ContainerGroupDefinition.ContainerEnvironment`.
|
|
190
|
-
* An environment variable to set inside a container, in the form of a key-value pair.
|
|
191
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-containerenvironment.html}
|
|
192
|
-
*/
|
|
193
|
-
export type ContainerEnvironment = {
|
|
194
|
-
/**
|
|
195
|
-
* The environment variable name.
|
|
196
|
-
* @minLength `1`
|
|
197
|
-
* @maxLength `255`
|
|
198
|
-
* @pattern `^.*$`
|
|
199
|
-
*/
|
|
200
|
-
Name: string;
|
|
201
|
-
/**
|
|
202
|
-
* The environment variable value.
|
|
203
|
-
* @minLength `1`
|
|
204
|
-
* @maxLength `255`
|
|
205
|
-
* @pattern `^.*$`
|
|
206
|
-
*/
|
|
207
|
-
Value: string;
|
|
208
|
-
};
|
|
209
|
-
/**
|
|
210
|
-
* Type definition for `AWS::GameLift::ContainerGroupDefinition.ContainerHealthCheck`.
|
|
211
|
-
* Specifies how the process manager checks the health of containers.
|
|
212
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-containerhealthcheck.html}
|
|
213
|
-
*/
|
|
214
|
-
export type ContainerHealthCheck = {
|
|
215
|
-
/**
|
|
216
|
-
* A string array representing the command that the container runs to determine if it is healthy.
|
|
217
|
-
* @minLength `1`
|
|
218
|
-
* @maxLength `20`
|
|
219
|
-
*/
|
|
220
|
-
Command: string[];
|
|
221
|
-
/**
|
|
222
|
-
* How often (in seconds) the health is checked.
|
|
223
|
-
* @min `60`
|
|
224
|
-
* @max `300`
|
|
225
|
-
*/
|
|
226
|
-
Interval?: number;
|
|
227
|
-
/**
|
|
228
|
-
* How many times the process manager will retry the command after a timeout. (The first run of the command does not count as a retry.)
|
|
229
|
-
* @min `5`
|
|
230
|
-
* @max `10`
|
|
231
|
-
*/
|
|
232
|
-
Retries?: number;
|
|
233
|
-
/**
|
|
234
|
-
* The optional grace period (in seconds) to give a container time to boostrap before teh health check is declared failed.
|
|
235
|
-
* @min `0`
|
|
236
|
-
* @max `300`
|
|
237
|
-
*/
|
|
238
|
-
StartPeriod?: number;
|
|
239
|
-
/**
|
|
240
|
-
* How many seconds the process manager allows the command to run before canceling it.
|
|
241
|
-
* @min `30`
|
|
242
|
-
* @max `60`
|
|
243
|
-
*/
|
|
244
|
-
Timeout?: number;
|
|
245
|
-
};
|
|
246
|
-
/**
|
|
247
|
-
* Type definition for `AWS::GameLift::ContainerGroupDefinition.ContainerPortRange`.
|
|
248
|
-
* A set of one or more port numbers that can be opened on the container.
|
|
249
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-containerportrange.html}
|
|
250
|
-
*/
|
|
251
|
-
export type ContainerPortRange = {
|
|
252
|
-
/**
|
|
253
|
-
* A starting value for the range of allowed port numbers.
|
|
254
|
-
* @min `1`
|
|
255
|
-
* @max `60000`
|
|
256
|
-
*/
|
|
257
|
-
FromPort: number;
|
|
258
|
-
/**
|
|
259
|
-
* Defines the protocol of these ports.
|
|
260
|
-
*/
|
|
261
|
-
Protocol: "TCP" | "UDP";
|
|
262
|
-
/**
|
|
263
|
-
* An ending value for the range of allowed port numbers. Port numbers are end-inclusive. This value must be equal to or greater than FromPort.
|
|
264
|
-
* @min `1`
|
|
265
|
-
* @max `60000`
|
|
266
|
-
*/
|
|
267
|
-
ToPort: number;
|
|
268
|
-
};
|
|
269
|
-
/**
|
|
270
|
-
* Type definition for `AWS::GameLift::ContainerGroupDefinition.MemoryLimits`.
|
|
271
|
-
* Specifies how much memory is available to the container.
|
|
272
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-memorylimits.html}
|
|
273
|
-
*/
|
|
274
|
-
export type MemoryLimits = {
|
|
275
|
-
/**
|
|
276
|
-
* The hard limit of memory to reserve for the container.
|
|
277
|
-
* @min `4`
|
|
278
|
-
* @max `1024000`
|
|
279
|
-
*/
|
|
280
|
-
HardLimit?: number;
|
|
281
|
-
/**
|
|
282
|
-
* The amount of memory that is reserved for the container.
|
|
283
|
-
* @min `4`
|
|
284
|
-
* @max `1024000`
|
|
285
|
-
*/
|
|
286
|
-
SoftLimit?: number;
|
|
287
|
-
};
|
|
288
|
-
/**
|
|
289
|
-
* Type definition for `AWS::GameLift::ContainerGroupDefinition.PortConfiguration`.
|
|
290
|
-
* Defines the ports on a container.
|
|
291
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-portconfiguration.html}
|
|
292
|
-
*/
|
|
293
|
-
export type PortConfiguration = {
|
|
294
|
-
/**
|
|
295
|
-
* Specifies one or more ranges of ports on a container.
|
|
296
|
-
* @minLength `1`
|
|
297
|
-
* @maxLength `100`
|
|
298
|
-
*/
|
|
299
|
-
ContainerPortRanges: ContainerPortRange[];
|
|
300
|
-
};
|
|
301
62
|
/**
|
|
302
63
|
* Type definition for `AWS::GameLift::ContainerGroupDefinition.Tag`.
|
|
303
64
|
* A key-value pair to associate with a resource.
|
|
@@ -25,11 +25,7 @@ export type GameLiftFleetProperties = {
|
|
|
25
25
|
/**
|
|
26
26
|
* ComputeType to differentiate EC2 hardware managed by GameLift and Anywhere hardware managed by the customer.
|
|
27
27
|
*/
|
|
28
|
-
ComputeType?: "EC2" | "ANYWHERE"
|
|
29
|
-
/**
|
|
30
|
-
* Specifies container groups that this instance will hold. You must specify exactly one replica group. Optionally, you may specify exactly one daemon group. You can't change this property after you create the fleet.
|
|
31
|
-
*/
|
|
32
|
-
ContainerGroupsConfiguration?: ContainerGroupsConfiguration;
|
|
28
|
+
ComputeType?: "EC2" | "ANYWHERE";
|
|
33
29
|
/**
|
|
34
30
|
* A human-readable description of a fleet.
|
|
35
31
|
* @minLength `1`
|
|
@@ -153,22 +149,6 @@ export type GameLiftFleetProperties = {
|
|
|
153
149
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-fleet.html#aws-resource-gamelift-fleet-return-values}
|
|
154
150
|
*/
|
|
155
151
|
export type GameLiftFleetAttributes = {
|
|
156
|
-
/**
|
|
157
|
-
* Specifies container groups that this instance will hold. You must specify exactly one replica group. Optionally, you may specify exactly one daemon group. You can't change this property after you create the fleet.
|
|
158
|
-
*/
|
|
159
|
-
ContainerGroupsConfiguration: {
|
|
160
|
-
/**
|
|
161
|
-
* The number of container groups per instance.
|
|
162
|
-
*/
|
|
163
|
-
ContainerGroupsPerInstance: {
|
|
164
|
-
/**
|
|
165
|
-
* GameLift calculates the maximum number of replica container groups it can launch per instance based on instance properties such as CPU, memory, and connection ports.
|
|
166
|
-
* @min `1`
|
|
167
|
-
* @max `5000`
|
|
168
|
-
*/
|
|
169
|
-
MaxReplicaContainerGroupsPerInstance: number;
|
|
170
|
-
};
|
|
171
|
-
};
|
|
172
152
|
/**
|
|
173
153
|
* Unique fleet ID
|
|
174
154
|
* @pattern `^fleet-\S+`
|
|
@@ -197,59 +177,6 @@ export type AnywhereConfiguration = {
|
|
|
197
177
|
export type CertificateConfiguration = {
|
|
198
178
|
CertificateType: "DISABLED" | "GENERATED";
|
|
199
179
|
};
|
|
200
|
-
/**
|
|
201
|
-
* Type definition for `AWS::GameLift::Fleet.ConnectionPortRange`.
|
|
202
|
-
* Defines the range of ports on the instance that allow inbound traffic to connect with containers in a fleet.
|
|
203
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-connectionportrange.html}
|
|
204
|
-
*/
|
|
205
|
-
export type ConnectionPortRange = {
|
|
206
|
-
/**
|
|
207
|
-
* A starting value for a range of allowed port numbers.
|
|
208
|
-
* @min `1`
|
|
209
|
-
* @max `60000`
|
|
210
|
-
*/
|
|
211
|
-
FromPort: number;
|
|
212
|
-
/**
|
|
213
|
-
* An ending value for a range of allowed port numbers. Port numbers are end-inclusive. This value must be higher than FromPort.
|
|
214
|
-
* @min `1`
|
|
215
|
-
* @max `60000`
|
|
216
|
-
*/
|
|
217
|
-
ToPort: number;
|
|
218
|
-
};
|
|
219
|
-
/**
|
|
220
|
-
* Type definition for `AWS::GameLift::Fleet.ContainerGroupsConfiguration`.
|
|
221
|
-
* Specifies container groups that this instance will hold. You must specify exactly one replica group. Optionally, you may specify exactly one daemon group. You can't change this property after you create the fleet.
|
|
222
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-containergroupsconfiguration.html}
|
|
223
|
-
*/
|
|
224
|
-
export type ContainerGroupsConfiguration = {
|
|
225
|
-
/**
|
|
226
|
-
* Defines the range of ports on the instance that allow inbound traffic to connect with containers in a fleet.
|
|
227
|
-
*/
|
|
228
|
-
ConnectionPortRange: ConnectionPortRange;
|
|
229
|
-
/**
|
|
230
|
-
* The names of the container group definitions that will be created in an instance. You must specify exactly one REPLICA container group. You have the option to also specify one DAEMON container group.
|
|
231
|
-
* @minLength `1`
|
|
232
|
-
* @maxLength `2`
|
|
233
|
-
*/
|
|
234
|
-
ContainerGroupDefinitionNames: string[];
|
|
235
|
-
/**
|
|
236
|
-
* The number of container groups per instance.
|
|
237
|
-
*/
|
|
238
|
-
ContainerGroupsPerInstance?: ContainerGroupsPerInstance;
|
|
239
|
-
};
|
|
240
|
-
/**
|
|
241
|
-
* Type definition for `AWS::GameLift::Fleet.ContainerGroupsPerInstance`.
|
|
242
|
-
* The number of container groups per instance.
|
|
243
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-fleet-containergroupsperinstance.html}
|
|
244
|
-
*/
|
|
245
|
-
export type ContainerGroupsPerInstance = {
|
|
246
|
-
/**
|
|
247
|
-
* Use this parameter to override the number of replica container groups GameLift will launch per instance with a number that is lower than that calculated maximum.
|
|
248
|
-
* @min `1`
|
|
249
|
-
* @max `5000`
|
|
250
|
-
*/
|
|
251
|
-
DesiredReplicaContainerGroupsPerInstance?: number;
|
|
252
|
-
};
|
|
253
180
|
/**
|
|
254
181
|
* Type definition for `AWS::GameLift::Fleet.IpPermission`.
|
|
255
182
|
* A range of IP addresses and port settings that allow inbound traffic to connect to server processes on an Amazon GameLift hosting resource. New game sessions that are started on the fleet are assigned an IP address/port number combination, which must fall into the fleet's allowed ranges. For fleets created with a custom game server, the ranges reflect the server's game session assignments. For Realtime Servers fleets, Amazon GameLift automatically opens two port ranges, one for TCP messaging and one for UDP, for use by the Realtime servers.
|
|
@@ -49,7 +49,7 @@ export type CisTargets = {
|
|
|
49
49
|
* @maxLength `10000`
|
|
50
50
|
*/
|
|
51
51
|
AccountIds: string[];
|
|
52
|
-
TargetResourceTags
|
|
52
|
+
TargetResourceTags: TargetResourceTags;
|
|
53
53
|
};
|
|
54
54
|
/**
|
|
55
55
|
* Type definition for `AWS::InspectorV2::CisScanConfiguration.DailySchedule`.
|
|
@@ -3709,7 +3709,7 @@ export type LayoutConfiguration = {
|
|
|
3709
3709
|
* Type definition for `AWS::QuickSight::Analysis.LayoutElementType`.
|
|
3710
3710
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-layoutelementtype.html}
|
|
3711
3711
|
*/
|
|
3712
|
-
export type LayoutElementType = "VISUAL" | "FILTER_CONTROL" | "PARAMETER_CONTROL" | "TEXT_BOX";
|
|
3712
|
+
export type LayoutElementType = "VISUAL" | "FILTER_CONTROL" | "PARAMETER_CONTROL" | "TEXT_BOX" | "IMAGE";
|
|
3713
3713
|
/**
|
|
3714
3714
|
* Type definition for `AWS::QuickSight::Analysis.LegendOptions`.
|
|
3715
3715
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-legendoptions.html}
|
|
@@ -3964,7 +3964,7 @@ export type LayoutConfiguration = {
|
|
|
3964
3964
|
* Type definition for `AWS::QuickSight::Dashboard.LayoutElementType`.
|
|
3965
3965
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-layoutelementtype.html}
|
|
3966
3966
|
*/
|
|
3967
|
-
export type LayoutElementType = "VISUAL" | "FILTER_CONTROL" | "PARAMETER_CONTROL" | "TEXT_BOX";
|
|
3967
|
+
export type LayoutElementType = "VISUAL" | "FILTER_CONTROL" | "PARAMETER_CONTROL" | "TEXT_BOX" | "IMAGE";
|
|
3968
3968
|
/**
|
|
3969
3969
|
* Type definition for `AWS::QuickSight::Dashboard.LegendOptions`.
|
|
3970
3970
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-legendoptions.html}
|
|
@@ -3746,7 +3746,7 @@ export type LayoutConfiguration = {
|
|
|
3746
3746
|
* Type definition for `AWS::QuickSight::Template.LayoutElementType`.
|
|
3747
3747
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-layoutelementtype.html}
|
|
3748
3748
|
*/
|
|
3749
|
-
export type LayoutElementType = "VISUAL" | "FILTER_CONTROL" | "PARAMETER_CONTROL" | "TEXT_BOX";
|
|
3749
|
+
export type LayoutElementType = "VISUAL" | "FILTER_CONTROL" | "PARAMETER_CONTROL" | "TEXT_BOX" | "IMAGE";
|
|
3750
3750
|
/**
|
|
3751
3751
|
* Type definition for `AWS::QuickSight::Template.LegendOptions`.
|
|
3752
3752
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-legendoptions.html}
|
|
@@ -30,7 +30,7 @@ export type SchedulerScheduleProperties = {
|
|
|
30
30
|
* The ARN for a KMS Key that will be used to encrypt customer data.
|
|
31
31
|
* @minLength `1`
|
|
32
32
|
* @maxLength `2048`
|
|
33
|
-
* @pattern `^arn:aws
|
|
33
|
+
* @pattern `^arn:aws[a-z-]*:kms:[a-z0-9\-]+:\d{12}:(key|alias)\/[0-9a-zA-Z-_]*$`
|
|
34
34
|
*/
|
|
35
35
|
KmsKeyArn?: string;
|
|
36
36
|
/**
|
|
@@ -73,7 +73,7 @@ export type SchedulerScheduleAttributes = {
|
|
|
73
73
|
* The Amazon Resource Name (ARN) of the schedule.
|
|
74
74
|
* @minLength `1`
|
|
75
75
|
* @maxLength `1224`
|
|
76
|
-
* @pattern `^arn:aws
|
|
76
|
+
* @pattern `^arn:aws[a-z-]*:scheduler:[a-z0-9\-]+:\d{12}:schedule\/[0-9a-zA-Z-_.]+\/[0-9a-zA-Z-_.]+$`
|
|
77
77
|
*/
|
|
78
78
|
Arn: string;
|
|
79
79
|
};
|
|
@@ -141,7 +141,7 @@ export type DeadLetterConfig = {
|
|
|
141
141
|
* The ARN of the SQS queue specified as the target for the dead-letter queue.
|
|
142
142
|
* @minLength `1`
|
|
143
143
|
* @maxLength `1600`
|
|
144
|
-
* @pattern `^arn:aws
|
|
144
|
+
* @pattern `^arn:aws[a-z-]*:sqs:[a-z0-9\-]+:\d{12}:[a-zA-Z0-9\-_]+$`
|
|
145
145
|
*/
|
|
146
146
|
Arn?: string;
|
|
147
147
|
};
|
|
@@ -462,7 +462,7 @@ export type Target = {
|
|
|
462
462
|
* The Amazon Resource Name (ARN) of the IAM role to be used for this target when the schedule is triggered.
|
|
463
463
|
* @minLength `1`
|
|
464
464
|
* @maxLength `1600`
|
|
465
|
-
* @pattern `^arn:aws
|
|
465
|
+
* @pattern `^arn:aws[a-z-]*:iam::\d{12}:role\/[\w+=,.@\/-]+$`
|
|
466
466
|
*/
|
|
467
467
|
RoleArn: string;
|
|
468
468
|
/**
|
|
@@ -27,7 +27,7 @@ export type SchedulerScheduleGroupAttributes = {
|
|
|
27
27
|
* The Amazon Resource Name (ARN) of the schedule group.
|
|
28
28
|
* @minLength `1`
|
|
29
29
|
* @maxLength `1224`
|
|
30
|
-
* @pattern `^arn:aws
|
|
30
|
+
* @pattern `^arn:aws[a-z-]*:scheduler:[a-z0-9\-]+:\d{12}:schedule-group\/[0-9a-zA-Z-_.]+$`
|
|
31
31
|
*/
|
|
32
32
|
Arn: string;
|
|
33
33
|
/**
|