@awboost/cfn-resource-types 0.1.366 → 0.1.367
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.
|
@@ -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.
|