@awboost/cfn-resource-types 0.1.366 → 0.1.368
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-EC2-TrafficMirrorFilterRule.d.ts +45 -3
- package/lib/AWS-EC2-TrafficMirrorFilterRule.js +1 -1
- package/lib/AWS-ECS-TaskDefinition.d.ts +2 -2
- package/lib/AWS-EMRServerless-Application.d.ts +18 -0
- package/lib/AWS-GameLift-ContainerFleet.d.ts +7 -0
- package/lib/AWS-GameLift-Fleet.d.ts +2 -2
- package/lib/AWS-Neptune-DBInstance.d.ts +58 -3
- package/lib/AWS-Neptune-DBInstance.js +1 -1
- package/package.json +1 -1
|
@@ -1,20 +1,53 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
|
-
* Resource Type definition for AWS::EC2::TrafficMirrorFilterRule
|
|
4
|
+
* Resource Type definition for for AWS::EC2::TrafficMirrorFilterRule
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html}
|
|
6
6
|
*/
|
|
7
7
|
export type EC2TrafficMirrorFilterRuleProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The description of the Traffic Mirror Filter rule.
|
|
10
|
+
*/
|
|
8
11
|
Description?: string;
|
|
12
|
+
/**
|
|
13
|
+
* The destination CIDR block to assign to the Traffic Mirror rule.
|
|
14
|
+
*/
|
|
9
15
|
DestinationCidrBlock: string;
|
|
16
|
+
/**
|
|
17
|
+
* The destination port range.
|
|
18
|
+
*/
|
|
10
19
|
DestinationPortRange?: TrafficMirrorPortRange;
|
|
20
|
+
/**
|
|
21
|
+
* The number of protocol, for example 17 (UDP), to assign to the Traffic Mirror rule.
|
|
22
|
+
*/
|
|
11
23
|
Protocol?: number;
|
|
24
|
+
/**
|
|
25
|
+
* The action to take on the filtered traffic (accept/reject).
|
|
26
|
+
*/
|
|
12
27
|
RuleAction: string;
|
|
28
|
+
/**
|
|
29
|
+
* The number of the Traffic Mirror rule.
|
|
30
|
+
*/
|
|
13
31
|
RuleNumber: number;
|
|
32
|
+
/**
|
|
33
|
+
* The source CIDR block to assign to the Traffic Mirror Filter rule.
|
|
34
|
+
*/
|
|
14
35
|
SourceCidrBlock: string;
|
|
36
|
+
/**
|
|
37
|
+
* The source port range.
|
|
38
|
+
*/
|
|
15
39
|
SourcePortRange?: TrafficMirrorPortRange;
|
|
40
|
+
/**
|
|
41
|
+
* Any tags assigned to the Traffic Mirror Filter rule.
|
|
42
|
+
*/
|
|
16
43
|
Tags?: Tag[];
|
|
44
|
+
/**
|
|
45
|
+
* The direction of traffic (ingress/egress).
|
|
46
|
+
*/
|
|
17
47
|
TrafficDirection: string;
|
|
48
|
+
/**
|
|
49
|
+
* The ID of the filter that this rule is associated with.
|
|
50
|
+
*/
|
|
18
51
|
TrafficMirrorFilterId: string;
|
|
19
52
|
};
|
|
20
53
|
/**
|
|
@@ -22,7 +55,10 @@ export type EC2TrafficMirrorFilterRuleProperties = {
|
|
|
22
55
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html#aws-resource-ec2-trafficmirrorfilterrule-return-values}
|
|
23
56
|
*/
|
|
24
57
|
export type EC2TrafficMirrorFilterRuleAttributes = {
|
|
25
|
-
|
|
58
|
+
/**
|
|
59
|
+
* The ID of the Traffic Mirror Filter rule.
|
|
60
|
+
*/
|
|
61
|
+
TrafficMirrorFilterRuleId: string;
|
|
26
62
|
};
|
|
27
63
|
/**
|
|
28
64
|
* Type definition for `AWS::EC2::TrafficMirrorFilterRule.Tag`.
|
|
@@ -37,11 +73,17 @@ export type Tag = {
|
|
|
37
73
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-trafficmirrorfilterrule-trafficmirrorportrange.html}
|
|
38
74
|
*/
|
|
39
75
|
export type TrafficMirrorPortRange = {
|
|
76
|
+
/**
|
|
77
|
+
* The first port in the Traffic Mirror port range.
|
|
78
|
+
*/
|
|
40
79
|
FromPort: number;
|
|
80
|
+
/**
|
|
81
|
+
* The last port in the Traffic Mirror port range.
|
|
82
|
+
*/
|
|
41
83
|
ToPort: number;
|
|
42
84
|
};
|
|
43
85
|
/**
|
|
44
|
-
* Resource Type definition for AWS::EC2::TrafficMirrorFilterRule
|
|
86
|
+
* Resource Type definition for for AWS::EC2::TrafficMirrorFilterRule
|
|
45
87
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html}
|
|
46
88
|
*/
|
|
47
89
|
export declare class EC2TrafficMirrorFilterRule extends $Resource<"AWS::EC2::TrafficMirrorFilterRule", EC2TrafficMirrorFilterRuleProperties, EC2TrafficMirrorFilterRuleAttributes> {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource Type definition for AWS::EC2::TrafficMirrorFilterRule
|
|
3
|
+
* Resource Type definition for for AWS::EC2::TrafficMirrorFilterRule
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilterrule.html}
|
|
5
5
|
*/
|
|
6
6
|
export class EC2TrafficMirrorFilterRule extends $Resource {
|
|
@@ -188,7 +188,7 @@ export type ContainerDefinition = {
|
|
|
188
188
|
+ Linux platform version ``1.3.0`` or later.
|
|
189
189
|
+ Windows platform version ``1.0.0`` or later.
|
|
190
190
|
|
|
191
|
-
If the task definition is used in a blue/green deployment that uses [AWS::CodeDeploy::DeploymentGroup BlueGreenDeploymentConfiguration](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-bluegreendeploymentconfiguration.html), the ``dependsOn`` parameter is not supported.
|
|
191
|
+
If the task definition is used in a blue/green deployment that uses [AWS::CodeDeploy::DeploymentGroup BlueGreenDeploymentConfiguration](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-codedeploy-deploymentgroup-bluegreendeploymentconfiguration.html), the ``dependsOn`` parameter is not supported.
|
|
192
192
|
*/
|
|
193
193
|
DependsOn?: ContainerDependency[];
|
|
194
194
|
/**
|
|
@@ -259,7 +259,7 @@ export type ContainerDefinition = {
|
|
|
259
259
|
*/
|
|
260
260
|
Hostname?: string;
|
|
261
261
|
/**
|
|
262
|
-
* The image used to start a container. This string is passed directly to the Docker daemon. By default, images in the Docker Hub registry are available. Other repositories are specified with either ``repository-url/image:tag`` or ``repository-url/image@digest``.
|
|
262
|
+
* The image used to start a container. This string is passed directly to the Docker daemon. By default, images in the Docker Hub registry are available. Other repositories are specified with either ``repository-url/image:tag`` or ``repository-url/image@digest``. For images using tags (repository-url/image:tag), up to 255 characters total are allowed, including letters (uppercase and lowercase), numbers, hyphens, underscores, colons, periods, forward slashes, and number signs (#). For images using digests (repository-url/image@digest), the 255 character limit applies only to the repository URL and image name (everything before the @ sign). The only supported hash function is sha256, and the hash value after sha256: must be exactly 64 characters (only letters A-F, a-f, and numbers 0-9 are allowed). This parameter maps to ``Image`` in the docker container create command and the ``IMAGE`` parameter of docker run.
|
|
263
263
|
+ When a new task starts, the Amazon ECS container agent pulls the latest version of the specified image and tag for the container to use. However, subsequent updates to a repository image aren't propagated to already running tasks.
|
|
264
264
|
+ Images in Amazon ECR repositories can be specified by either using the full ``registry/repository:tag`` or ``registry/repository@digest``. For example, ``012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>:latest`` or ``012345678910.dkr.ecr.<region-name>.amazonaws.com/<repository-name>@sha256:94afd1f2e64d908bc90dbca0035a5b567EXAMPLE``.
|
|
265
265
|
+ Images in official repositories on Docker Hub use a single name (for example, ``ubuntu`` or ``mongo``).
|
|
@@ -17,6 +17,10 @@ export type EMRServerlessApplicationProperties = {
|
|
|
17
17
|
* Configuration for Auto Stop of Application.
|
|
18
18
|
*/
|
|
19
19
|
AutoStopConfiguration?: AutoStopConfiguration;
|
|
20
|
+
/**
|
|
21
|
+
* The IAM IdentityCenter configuration for trusted-identity-propagation on this application. Supported with release labels emr-7.8.0 and above.
|
|
22
|
+
*/
|
|
23
|
+
IdentityCenterConfiguration?: IdentityCenterConfiguration;
|
|
20
24
|
/**
|
|
21
25
|
* The image configuration.
|
|
22
26
|
*/
|
|
@@ -173,6 +177,20 @@ export type ConfigurationObject = {
|
|
|
173
177
|
Configurations?: ConfigurationObject[];
|
|
174
178
|
Properties?: Record<string, string>;
|
|
175
179
|
};
|
|
180
|
+
/**
|
|
181
|
+
* Type definition for `AWS::EMRServerless::Application.IdentityCenterConfiguration`.
|
|
182
|
+
* The IAM IdentityCenter configuration for trusted-identity-propagation on this application. Supported with release labels emr-7.8.0 and above.
|
|
183
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrserverless-application-identitycenterconfiguration.html}
|
|
184
|
+
*/
|
|
185
|
+
export type IdentityCenterConfiguration = {
|
|
186
|
+
/**
|
|
187
|
+
* The IAM IdentityCenter instance arn
|
|
188
|
+
* @minLength `1`
|
|
189
|
+
* @maxLength `1024`
|
|
190
|
+
* @pattern `^arn:(aws[a-zA-Z0-9-]*):sso:::instance/(sso)?ins-[a-zA-Z0-9-.]{16}$`
|
|
191
|
+
*/
|
|
192
|
+
IdentityCenterInstanceArn?: string;
|
|
193
|
+
};
|
|
176
194
|
/**
|
|
177
195
|
* Type definition for `AWS::EMRServerless::Application.ImageConfigurationInput`.
|
|
178
196
|
* The image configuration.
|
|
@@ -304,6 +304,13 @@ export type LogConfiguration = {
|
|
|
304
304
|
* Configures the service that provides logs.
|
|
305
305
|
*/
|
|
306
306
|
LogDestination?: LogDestination;
|
|
307
|
+
/**
|
|
308
|
+
* If log destination is CLOUDWATCH, logs are sent to the specified log group in Amazon CloudWatch.
|
|
309
|
+
* @minLength `1`
|
|
310
|
+
* @maxLength `512`
|
|
311
|
+
* @pattern `[a-zA-Z0-9:/\-\*]+`
|
|
312
|
+
*/
|
|
313
|
+
LogGroupArn?: string;
|
|
307
314
|
/**
|
|
308
315
|
* The name of the S3 bucket to pull logs from if S3 is the LogDestination
|
|
309
316
|
* @minLength `1`
|
|
@@ -10,9 +10,9 @@ export type GameLiftFleetProperties = {
|
|
|
10
10
|
*/
|
|
11
11
|
AnywhereConfiguration?: AnywhereConfiguration;
|
|
12
12
|
/**
|
|
13
|
-
* Determines
|
|
13
|
+
* Determines when and how to apply fleet or location capacities. If you choose ON_CREATE_AND_UPDATE_WITH_AUTOSCALING, MinSize and MaxSize will still be applied on creation and on updates, but DesiredEC2Instances will only be applied once on fleet creation and will be ignored during updates to prevent conflicts with auto-scaling.
|
|
14
14
|
*/
|
|
15
|
-
ApplyCapacity?: "ON_UPDATE" | "ON_CREATE_AND_UPDATE";
|
|
15
|
+
ApplyCapacity?: "ON_UPDATE" | "ON_CREATE_AND_UPDATE" | "ON_CREATE_AND_UPDATE_WITH_AUTOSCALING";
|
|
16
16
|
/**
|
|
17
17
|
* A unique identifier for a build to be deployed on the new fleet. If you are deploying the fleet with a custom game build, you must specify this property. The build must have been successfully uploaded to Amazon GameLift and be in a READY status. This fleet setting cannot be changed once the fleet is created.
|
|
18
18
|
* @pattern `^build-\S+|^arn:.*:build/build-\S+`
|
|
@@ -1,20 +1,63 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
|
-
*
|
|
4
|
+
* The AWS::Neptune::DBInstance resource creates an Amazon Neptune DB instance.
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html}
|
|
6
6
|
*/
|
|
7
7
|
export type NeptuneDBInstanceProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* Indicates that major version upgrades are allowed. Changing this parameter doesn't result in an outage and the change is asynchronously applied as soon as possible. This parameter must be set to true when specifying a value for the EngineVersion parameter that is a different major version than the DB instance's current version.
|
|
10
|
+
*/
|
|
8
11
|
AllowMajorVersionUpgrade?: boolean;
|
|
12
|
+
/**
|
|
13
|
+
* Indicates that minor version patches are applied automatically.
|
|
14
|
+
|
|
15
|
+
When updating this property, some interruptions may occur.
|
|
16
|
+
*/
|
|
9
17
|
AutoMinorVersionUpgrade?: boolean;
|
|
18
|
+
/**
|
|
19
|
+
* Specifies the name of the Availability Zone the DB instance is located in.
|
|
20
|
+
*/
|
|
10
21
|
AvailabilityZone?: string;
|
|
22
|
+
/**
|
|
23
|
+
* If the DB instance is a member of a DB cluster, contains the name of the DB cluster that the DB instance is a member of.
|
|
24
|
+
*/
|
|
11
25
|
DBClusterIdentifier?: string;
|
|
26
|
+
/**
|
|
27
|
+
* Contains the name of the compute and memory capacity class of the DB instance.
|
|
28
|
+
|
|
29
|
+
If you update this property, some interruptions may occur.
|
|
30
|
+
*/
|
|
12
31
|
DBInstanceClass: string;
|
|
32
|
+
/**
|
|
33
|
+
* Contains a user-supplied database identifier. This identifier is the unique key that identifies a DB instance.
|
|
34
|
+
*/
|
|
13
35
|
DBInstanceIdentifier?: string;
|
|
36
|
+
/**
|
|
37
|
+
* The name of an existing DB parameter group or a reference to an AWS::Neptune::DBParameterGroup resource created in the template. If any of the data members of the referenced parameter group are changed during an update, the DB instance might need to be restarted, which causes some interruption. If the parameter group contains static parameters, whether they were changed or not, an update triggers a reboot.
|
|
38
|
+
*/
|
|
14
39
|
DBParameterGroupName?: string;
|
|
40
|
+
/**
|
|
41
|
+
* This parameter is not supported.
|
|
42
|
+
|
|
43
|
+
`AWS::Neptune::DBInstance` does not support restoring from snapshots.
|
|
44
|
+
|
|
45
|
+
`AWS::Neptune::DBCluster` does support restoring from snapshots.
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
*/
|
|
15
49
|
DBSnapshotIdentifier?: string;
|
|
50
|
+
/**
|
|
51
|
+
* A DB subnet group to associate with the DB instance. If you update this value, the new subnet group must be a subnet group in a new virtual private cloud (VPC).
|
|
52
|
+
*/
|
|
16
53
|
DBSubnetGroupName?: string;
|
|
54
|
+
/**
|
|
55
|
+
* Specifies the weekly time range during which system maintenance can occur, in Universal Coordinated Time (UTC).
|
|
56
|
+
*/
|
|
17
57
|
PreferredMaintenanceWindow?: string;
|
|
58
|
+
/**
|
|
59
|
+
* An arbitrary set of tags (key-value pairs) for this DB instance.
|
|
60
|
+
*/
|
|
18
61
|
Tags?: Tag[];
|
|
19
62
|
};
|
|
20
63
|
/**
|
|
@@ -22,20 +65,32 @@ export type NeptuneDBInstanceProperties = {
|
|
|
22
65
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html#aws-resource-neptune-dbinstance-return-values}
|
|
23
66
|
*/
|
|
24
67
|
export type NeptuneDBInstanceAttributes = {
|
|
68
|
+
/**
|
|
69
|
+
* The connection endpoint for the database. For example: `mystack-mydb-1apw1j4phylrk.cg034hpkmmjt.us-east-2.rds.amazonaws.com`.
|
|
70
|
+
*/
|
|
25
71
|
Endpoint: string;
|
|
26
|
-
|
|
72
|
+
/**
|
|
73
|
+
* The port number on which the database accepts connections. For example: `8182`.
|
|
74
|
+
*/
|
|
27
75
|
Port: string;
|
|
28
76
|
};
|
|
29
77
|
/**
|
|
30
78
|
* Type definition for `AWS::Neptune::DBInstance.Tag`.
|
|
79
|
+
* A key-value pair to associate with a resource.
|
|
31
80
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-neptune-dbinstance-tag.html}
|
|
32
81
|
*/
|
|
33
82
|
export type Tag = {
|
|
83
|
+
/**
|
|
84
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
85
|
+
*/
|
|
34
86
|
Key: string;
|
|
87
|
+
/**
|
|
88
|
+
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
89
|
+
*/
|
|
35
90
|
Value: string;
|
|
36
91
|
};
|
|
37
92
|
/**
|
|
38
|
-
*
|
|
93
|
+
* The AWS::Neptune::DBInstance resource creates an Amazon Neptune DB instance.
|
|
39
94
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html}
|
|
40
95
|
*/
|
|
41
96
|
export declare class NeptuneDBInstance extends $Resource<"AWS::Neptune::DBInstance", NeptuneDBInstanceProperties, NeptuneDBInstanceAttributes> {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* The AWS::Neptune::DBInstance resource creates an Amazon Neptune DB instance.
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbinstance.html}
|
|
5
5
|
*/
|
|
6
6
|
export class NeptuneDBInstance extends $Resource {
|