@awboost/cfn-resource-types 0.1.482 → 0.1.484
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-Athena-WorkGroup.d.ts +140 -2
- package/lib/AWS-Backup-BackupPlan.d.ts +1 -0
- package/lib/AWS-Bedrock-KnowledgeBase.d.ts +26 -1
- package/lib/AWS-Cassandra-Table.d.ts +19 -0
- package/lib/AWS-CloudFormation-StackSet.d.ts +4 -0
- package/lib/AWS-Cognito-Terms.d.ts +51 -0
- package/lib/AWS-Cognito-Terms.js +12 -0
- package/lib/AWS-Connect-EvaluationForm.d.ts +4 -4
- package/lib/AWS-EC2-TransitGatewayMeteringPolicy.d.ts +52 -0
- package/lib/AWS-EC2-TransitGatewayMeteringPolicy.js +12 -0
- package/lib/AWS-EC2-TransitGatewayMeteringPolicyEntry.d.ts +89 -0
- package/lib/AWS-EC2-TransitGatewayMeteringPolicyEntry.js +12 -0
- package/lib/AWS-EC2-VPCEncryptionControl.d.ts +135 -0
- package/lib/AWS-EC2-VPCEncryptionControl.js +12 -0
- package/lib/AWS-ECR-PullTimeUpdateExclusion.d.ts +23 -0
- package/lib/AWS-ECR-PullTimeUpdateExclusion.js +12 -0
- package/lib/AWS-ECR-SigningConfiguration.d.ts +76 -0
- package/lib/AWS-ECR-SigningConfiguration.js +12 -0
- package/lib/AWS-ECS-ExpressGatewayService.d.ts +201 -0
- package/lib/AWS-ECS-ExpressGatewayService.js +12 -0
- package/lib/AWS-EKS-Cluster.d.ts +15 -0
- package/lib/AWS-FSx-FileSystem.d.ts +1 -0
- package/lib/AWS-FSx-StorageVirtualMachine.d.ts +1 -0
- package/lib/AWS-KinesisVideo-Stream.d.ts +15 -0
- package/lib/AWS-OpenSearchServerless-Collection.d.ts +0 -30
- package/lib/AWS-PCS-Cluster.d.ts +47 -2
- package/lib/AWS-Rbin-Rule.d.ts +1 -1
- package/lib/AWS-S3-Bucket.d.ts +1 -0
- package/lib/AWS-SageMaker-Cluster.d.ts +76 -0
- package/lib/AWS-SecretsManager-RotationSchedule.d.ts +23 -0
- package/lib/AWS-SecretsManager-Secret.d.ts +1 -0
- package/lib/AWS-Wisdom-AIAgent.d.ts +59 -1
- package/package.json +1 -1
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Resource Type definition for AWS::EC2::VPCEncryptionControl
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcencryptioncontrol.html}
|
|
6
|
+
*/
|
|
7
|
+
export type EC2VPCEncryptionControlProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* Used to enable or disable EIGW exclusion
|
|
10
|
+
*/
|
|
11
|
+
EgressOnlyInternetGatewayExclusionInput?: "enable" | "disable";
|
|
12
|
+
/**
|
|
13
|
+
* Used to enable or disable EFS exclusion
|
|
14
|
+
*/
|
|
15
|
+
ElasticFileSystemExclusionInput?: "enable" | "disable";
|
|
16
|
+
/**
|
|
17
|
+
* Used to enable or disable IGW exclusion
|
|
18
|
+
*/
|
|
19
|
+
InternetGatewayExclusionInput?: "enable" | "disable";
|
|
20
|
+
/**
|
|
21
|
+
* Used to enable or disable Lambda exclusion
|
|
22
|
+
*/
|
|
23
|
+
LambdaExclusionInput?: "enable" | "disable";
|
|
24
|
+
/**
|
|
25
|
+
* The VPC encryption control mode, either monitor or enforce.
|
|
26
|
+
*/
|
|
27
|
+
Mode?: "monitor" | "enforce";
|
|
28
|
+
/**
|
|
29
|
+
* Used to enable or disable Nat gateway exclusion
|
|
30
|
+
*/
|
|
31
|
+
NatGatewayExclusionInput?: "enable" | "disable";
|
|
32
|
+
/**
|
|
33
|
+
* The tags to assign to the VPC encryption control.
|
|
34
|
+
*/
|
|
35
|
+
Tags?: Tag[];
|
|
36
|
+
/**
|
|
37
|
+
* Used to enable or disable VGW exclusion
|
|
38
|
+
*/
|
|
39
|
+
VirtualPrivateGatewayExclusionInput?: "enable" | "disable";
|
|
40
|
+
/**
|
|
41
|
+
* The VPC on which this VPC encryption control is applied.
|
|
42
|
+
*/
|
|
43
|
+
VpcId?: string;
|
|
44
|
+
/**
|
|
45
|
+
* Used to enable or disable Vpc Lattice exclusion
|
|
46
|
+
*/
|
|
47
|
+
VpcLatticeExclusionInput?: "enable" | "disable";
|
|
48
|
+
/**
|
|
49
|
+
* Used to enable or disable VPC peering exclusion
|
|
50
|
+
*/
|
|
51
|
+
VpcPeeringExclusionInput?: "enable" | "disable";
|
|
52
|
+
};
|
|
53
|
+
/**
|
|
54
|
+
* Attribute type definition for `AWS::EC2::VPCEncryptionControl`.
|
|
55
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcencryptioncontrol.html#aws-resource-ec2-vpcencryptioncontrol-return-values}
|
|
56
|
+
*/
|
|
57
|
+
export type EC2VPCEncryptionControlAttributes = {
|
|
58
|
+
/**
|
|
59
|
+
* Enumerates the states of all the VPC encryption control resource exclusions
|
|
60
|
+
*/
|
|
61
|
+
ResourceExclusions: {
|
|
62
|
+
EgressOnlyInternetGateway: {
|
|
63
|
+
State: string;
|
|
64
|
+
StateMessage: string;
|
|
65
|
+
};
|
|
66
|
+
ElasticFileSystem: {
|
|
67
|
+
State: string;
|
|
68
|
+
StateMessage: string;
|
|
69
|
+
};
|
|
70
|
+
InternetGateway: {
|
|
71
|
+
State: string;
|
|
72
|
+
StateMessage: string;
|
|
73
|
+
};
|
|
74
|
+
Lambda: {
|
|
75
|
+
State: string;
|
|
76
|
+
StateMessage: string;
|
|
77
|
+
};
|
|
78
|
+
NatGateway: {
|
|
79
|
+
State: string;
|
|
80
|
+
StateMessage: string;
|
|
81
|
+
};
|
|
82
|
+
VirtualPrivateGateway: {
|
|
83
|
+
State: string;
|
|
84
|
+
StateMessage: string;
|
|
85
|
+
};
|
|
86
|
+
VpcLattice: {
|
|
87
|
+
State: string;
|
|
88
|
+
StateMessage: string;
|
|
89
|
+
};
|
|
90
|
+
VpcPeering: {
|
|
91
|
+
State: string;
|
|
92
|
+
StateMessage: string;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
/**
|
|
96
|
+
* The current state of the VPC encryption control.
|
|
97
|
+
*/
|
|
98
|
+
State: "creating" | "available" | "monitor-in-progress" | "enforce-in-progress" | "monitor-failed" | "enforce-failed" | "deleting" | "deleted" | "delete-failed";
|
|
99
|
+
/**
|
|
100
|
+
* Provides additional context on the state of the VPC encryption control.
|
|
101
|
+
*/
|
|
102
|
+
StateMessage: string;
|
|
103
|
+
/**
|
|
104
|
+
* The VPC encryption control resource id.
|
|
105
|
+
*/
|
|
106
|
+
VpcEncryptionControlId: string;
|
|
107
|
+
};
|
|
108
|
+
/**
|
|
109
|
+
* Type definition for `AWS::EC2::VPCEncryptionControl.Tag`.
|
|
110
|
+
* A key-value pair to associate with a resource.
|
|
111
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpcencryptioncontrol-tag.html}
|
|
112
|
+
*/
|
|
113
|
+
export type Tag = {
|
|
114
|
+
/**
|
|
115
|
+
* 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 -.
|
|
116
|
+
* @minLength `1`
|
|
117
|
+
* @maxLength `128`
|
|
118
|
+
*/
|
|
119
|
+
Key: string;
|
|
120
|
+
/**
|
|
121
|
+
* 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 -.
|
|
122
|
+
* @minLength `0`
|
|
123
|
+
* @maxLength `256`
|
|
124
|
+
*/
|
|
125
|
+
Value: string;
|
|
126
|
+
};
|
|
127
|
+
/**
|
|
128
|
+
* Resource Type definition for AWS::EC2::VPCEncryptionControl
|
|
129
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcencryptioncontrol.html}
|
|
130
|
+
*/
|
|
131
|
+
export declare class EC2VPCEncryptionControl extends $Resource<"AWS::EC2::VPCEncryptionControl", EC2VPCEncryptionControlProperties, EC2VPCEncryptionControlAttributes> {
|
|
132
|
+
static readonly Type = "AWS::EC2::VPCEncryptionControl";
|
|
133
|
+
constructor(logicalId: string, properties: EC2VPCEncryptionControlProperties, options?: $ResourceOptions);
|
|
134
|
+
}
|
|
135
|
+
//# sourceMappingURL=AWS-EC2-VPCEncryptionControl.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Type definition for AWS::EC2::VPCEncryptionControl
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcencryptioncontrol.html}
|
|
5
|
+
*/
|
|
6
|
+
export class EC2VPCEncryptionControl extends $Resource {
|
|
7
|
+
static Type = "AWS::EC2::VPCEncryptionControl";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, EC2VPCEncryptionControl.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-EC2-VPCEncryptionControl.js.map
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Resource Type definition for AWS::ECR::PullTimeUpdateExclusion controls the exclusion configuration for ecr image pull time update.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-pulltimeupdateexclusion.html}
|
|
6
|
+
*/
|
|
7
|
+
export type ECRPullTimeUpdateExclusionProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* Principal arn that should not update image pull times.
|
|
10
|
+
* @maxLength `200`
|
|
11
|
+
* @pattern `^arn:aws(-[a-z]+)*:iam::[0-9]{12}:(role|user)/[\w+=,.@-]+(/[\w+=,.@-]+)*$`
|
|
12
|
+
*/
|
|
13
|
+
PrincipalArn: string;
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* Resource Type definition for AWS::ECR::PullTimeUpdateExclusion controls the exclusion configuration for ecr image pull time update.
|
|
17
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-pulltimeupdateexclusion.html}
|
|
18
|
+
*/
|
|
19
|
+
export declare class ECRPullTimeUpdateExclusion extends $Resource<"AWS::ECR::PullTimeUpdateExclusion", ECRPullTimeUpdateExclusionProperties, Record<string, never>> {
|
|
20
|
+
static readonly Type = "AWS::ECR::PullTimeUpdateExclusion";
|
|
21
|
+
constructor(logicalId: string, properties: ECRPullTimeUpdateExclusionProperties, options?: $ResourceOptions);
|
|
22
|
+
}
|
|
23
|
+
//# sourceMappingURL=AWS-ECR-PullTimeUpdateExclusion.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Type definition for AWS::ECR::PullTimeUpdateExclusion controls the exclusion configuration for ecr image pull time update.
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-pulltimeupdateexclusion.html}
|
|
5
|
+
*/
|
|
6
|
+
export class ECRPullTimeUpdateExclusion extends $Resource {
|
|
7
|
+
static Type = "AWS::ECR::PullTimeUpdateExclusion";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, ECRPullTimeUpdateExclusion.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-ECR-PullTimeUpdateExclusion.js.map
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* The AWS::ECR::SigningConfiguration resource creates or updates the signing configuration for an Amazon ECR registry.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-signingconfiguration.html}
|
|
6
|
+
*/
|
|
7
|
+
export type ECRSigningConfigurationProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* Array of signing rules that define which repositories should be signed and with which signing profiles.
|
|
10
|
+
* @minLength `0`
|
|
11
|
+
* @maxLength `50`
|
|
12
|
+
*/
|
|
13
|
+
Rules: Rule[];
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* Attribute type definition for `AWS::ECR::SigningConfiguration`.
|
|
17
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-signingconfiguration.html#aws-resource-ecr-signingconfiguration-return-values}
|
|
18
|
+
*/
|
|
19
|
+
export type ECRSigningConfigurationAttributes = {
|
|
20
|
+
/**
|
|
21
|
+
* 12-digit AWS account ID of the ECR registry.
|
|
22
|
+
* @pattern `^[0-9]{12}$`
|
|
23
|
+
*/
|
|
24
|
+
RegistryId: string;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* Type definition for `AWS::ECR::SigningConfiguration.FilterType`.
|
|
28
|
+
* Type of repository filter
|
|
29
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-signingconfiguration-filtertype.html}
|
|
30
|
+
*/
|
|
31
|
+
export type FilterType = "WILDCARD_MATCH";
|
|
32
|
+
/**
|
|
33
|
+
* Type definition for `AWS::ECR::SigningConfiguration.RepositoryFilter`.
|
|
34
|
+
* An array of objects representing the details of a repository filter.
|
|
35
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-signingconfiguration-repositoryfilter.html}
|
|
36
|
+
*/
|
|
37
|
+
export type RepositoryFilter = {
|
|
38
|
+
/**
|
|
39
|
+
* Repository name pattern (supports '*' wildcard).
|
|
40
|
+
* @minLength `1`
|
|
41
|
+
* @maxLength `256`
|
|
42
|
+
* @pattern `^(?=.{1,256}$)(?:[a-z0-9*]+(?:[._-][a-z0-9*]*)/*)*[a-z0-9*]*(?:[._-][a-z0-9*]*)*$`
|
|
43
|
+
*/
|
|
44
|
+
Filter: string;
|
|
45
|
+
/**
|
|
46
|
+
* Type of repository filter
|
|
47
|
+
*/
|
|
48
|
+
FilterType: FilterType;
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* Type definition for `AWS::ECR::SigningConfiguration.Rule`.
|
|
52
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-signingconfiguration-rule.html}
|
|
53
|
+
*/
|
|
54
|
+
export type Rule = {
|
|
55
|
+
/**
|
|
56
|
+
* Optional array of repository filters. If omitted, the rule matches all repositories. If provided, must contain at least one filter. Empty arrays are not allowed.
|
|
57
|
+
* @minLength `1`
|
|
58
|
+
* @maxLength `100`
|
|
59
|
+
*/
|
|
60
|
+
RepositoryFilters?: RepositoryFilter[];
|
|
61
|
+
/**
|
|
62
|
+
* AWS Signer signing profile ARN to use for matched repositories.
|
|
63
|
+
* @maxLength `200`
|
|
64
|
+
* @pattern `^arn:aws(-[a-z]+)*:signer:[a-z0-9-]+:[0-9]{12}:\/signing-profiles\/[a-zA-Z0-9_]{2,}$`
|
|
65
|
+
*/
|
|
66
|
+
SigningProfileArn: string;
|
|
67
|
+
};
|
|
68
|
+
/**
|
|
69
|
+
* The AWS::ECR::SigningConfiguration resource creates or updates the signing configuration for an Amazon ECR registry.
|
|
70
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-signingconfiguration.html}
|
|
71
|
+
*/
|
|
72
|
+
export declare class ECRSigningConfiguration extends $Resource<"AWS::ECR::SigningConfiguration", ECRSigningConfigurationProperties, ECRSigningConfigurationAttributes> {
|
|
73
|
+
static readonly Type = "AWS::ECR::SigningConfiguration";
|
|
74
|
+
constructor(logicalId: string, properties: ECRSigningConfigurationProperties, options?: $ResourceOptions);
|
|
75
|
+
}
|
|
76
|
+
//# sourceMappingURL=AWS-ECR-SigningConfiguration.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* The AWS::ECR::SigningConfiguration resource creates or updates the signing configuration for an Amazon ECR registry.
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-signingconfiguration.html}
|
|
5
|
+
*/
|
|
6
|
+
export class ECRSigningConfiguration extends $Resource {
|
|
7
|
+
static Type = "AWS::ECR::SigningConfiguration";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, ECRSigningConfiguration.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-ECR-SigningConfiguration.js.map
|
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Resource Type definition for AWS::ECS::ExpressGatewayService
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-expressgatewayservice.html}
|
|
6
|
+
*/
|
|
7
|
+
export type ECSExpressGatewayServiceProperties = {
|
|
8
|
+
Cluster?: string;
|
|
9
|
+
Cpu?: string;
|
|
10
|
+
ExecutionRoleArn: string;
|
|
11
|
+
HealthCheckPath?: string;
|
|
12
|
+
InfrastructureRoleArn: string;
|
|
13
|
+
Memory?: string;
|
|
14
|
+
NetworkConfiguration?: ExpressGatewayServiceNetworkConfiguration;
|
|
15
|
+
PrimaryContainer: ExpressGatewayContainer;
|
|
16
|
+
ScalingTarget?: ExpressGatewayScalingTarget;
|
|
17
|
+
ServiceName?: string;
|
|
18
|
+
Tags?: Tag[];
|
|
19
|
+
TaskRoleArn?: string;
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* Attribute type definition for `AWS::ECS::ExpressGatewayService`.
|
|
23
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-expressgatewayservice.html#aws-resource-ecs-expressgatewayservice-return-values}
|
|
24
|
+
*/
|
|
25
|
+
export type ECSExpressGatewayServiceAttributes = {
|
|
26
|
+
ActiveConfigurations: {
|
|
27
|
+
Cpu: string;
|
|
28
|
+
CreatedAt: string;
|
|
29
|
+
ExecutionRoleArn: string;
|
|
30
|
+
HealthCheckPath: string;
|
|
31
|
+
IngressPaths: {
|
|
32
|
+
AccessType: AccessType;
|
|
33
|
+
Endpoint: string;
|
|
34
|
+
}[];
|
|
35
|
+
Memory: string;
|
|
36
|
+
NetworkConfiguration: {
|
|
37
|
+
SecurityGroups: string[];
|
|
38
|
+
Subnets: string[];
|
|
39
|
+
};
|
|
40
|
+
PrimaryContainer: {
|
|
41
|
+
AwsLogsConfiguration: {
|
|
42
|
+
LogGroup: string;
|
|
43
|
+
LogStreamPrefix: string;
|
|
44
|
+
};
|
|
45
|
+
Command: string[];
|
|
46
|
+
ContainerPort: number;
|
|
47
|
+
Environment: {
|
|
48
|
+
Name: string;
|
|
49
|
+
Value: string;
|
|
50
|
+
}[];
|
|
51
|
+
Image: string;
|
|
52
|
+
RepositoryCredentials: {
|
|
53
|
+
CredentialsParameter: string;
|
|
54
|
+
};
|
|
55
|
+
Secrets: {
|
|
56
|
+
Name: string;
|
|
57
|
+
ValueFrom: string;
|
|
58
|
+
}[];
|
|
59
|
+
};
|
|
60
|
+
ScalingTarget: {
|
|
61
|
+
AutoScalingMetric: ExpressGatewayServiceScalingMetric;
|
|
62
|
+
AutoScalingTargetValue: number;
|
|
63
|
+
MaxTaskCount: number;
|
|
64
|
+
MinTaskCount: number;
|
|
65
|
+
};
|
|
66
|
+
ServiceRevisionArn: string;
|
|
67
|
+
TaskRoleArn: string;
|
|
68
|
+
}[];
|
|
69
|
+
CreatedAt: string;
|
|
70
|
+
ServiceArn: string;
|
|
71
|
+
Status: {
|
|
72
|
+
StatusCode: ExpressGatewayServiceStatusCode;
|
|
73
|
+
};
|
|
74
|
+
UpdatedAt: string;
|
|
75
|
+
};
|
|
76
|
+
/**
|
|
77
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.AccessType`.
|
|
78
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-accesstype.html}
|
|
79
|
+
*/
|
|
80
|
+
export type AccessType = "PUBLIC" | "PRIVATE";
|
|
81
|
+
/**
|
|
82
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.ExpressGatewayContainer`.
|
|
83
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewaycontainer.html}
|
|
84
|
+
*/
|
|
85
|
+
export type ExpressGatewayContainer = {
|
|
86
|
+
AwsLogsConfiguration?: ExpressGatewayServiceAwsLogsConfiguration;
|
|
87
|
+
Command?: string[];
|
|
88
|
+
ContainerPort?: number;
|
|
89
|
+
Environment?: KeyValuePair[];
|
|
90
|
+
Image: string;
|
|
91
|
+
RepositoryCredentials?: ExpressGatewayRepositoryCredentials;
|
|
92
|
+
Secrets?: Secret[];
|
|
93
|
+
};
|
|
94
|
+
/**
|
|
95
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.ExpressGatewayRepositoryCredentials`.
|
|
96
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayrepositorycredentials.html}
|
|
97
|
+
*/
|
|
98
|
+
export type ExpressGatewayRepositoryCredentials = {
|
|
99
|
+
CredentialsParameter: string;
|
|
100
|
+
};
|
|
101
|
+
/**
|
|
102
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.ExpressGatewayScalingTarget`.
|
|
103
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayscalingtarget.html}
|
|
104
|
+
*/
|
|
105
|
+
export type ExpressGatewayScalingTarget = {
|
|
106
|
+
AutoScalingMetric?: ExpressGatewayServiceScalingMetric;
|
|
107
|
+
AutoScalingTargetValue?: number;
|
|
108
|
+
MaxTaskCount?: number;
|
|
109
|
+
MinTaskCount?: number;
|
|
110
|
+
};
|
|
111
|
+
/**
|
|
112
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.ExpressGatewayServiceAwsLogsConfiguration`.
|
|
113
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayserviceawslogsconfiguration.html}
|
|
114
|
+
*/
|
|
115
|
+
export type ExpressGatewayServiceAwsLogsConfiguration = {
|
|
116
|
+
LogGroup: string;
|
|
117
|
+
LogStreamPrefix: string;
|
|
118
|
+
};
|
|
119
|
+
/**
|
|
120
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.ExpressGatewayServiceConfiguration`.
|
|
121
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayserviceconfiguration.html}
|
|
122
|
+
*/
|
|
123
|
+
export type ExpressGatewayServiceConfiguration = {
|
|
124
|
+
Cpu?: string;
|
|
125
|
+
CreatedAt?: string;
|
|
126
|
+
ExecutionRoleArn?: string;
|
|
127
|
+
HealthCheckPath?: string;
|
|
128
|
+
IngressPaths?: IngressPathSummary[];
|
|
129
|
+
Memory?: string;
|
|
130
|
+
NetworkConfiguration?: ExpressGatewayServiceNetworkConfiguration;
|
|
131
|
+
PrimaryContainer?: ExpressGatewayContainer;
|
|
132
|
+
ScalingTarget?: ExpressGatewayScalingTarget;
|
|
133
|
+
ServiceRevisionArn?: string;
|
|
134
|
+
TaskRoleArn?: string;
|
|
135
|
+
};
|
|
136
|
+
/**
|
|
137
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.ExpressGatewayServiceNetworkConfiguration`.
|
|
138
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayservicenetworkconfiguration.html}
|
|
139
|
+
*/
|
|
140
|
+
export type ExpressGatewayServiceNetworkConfiguration = {
|
|
141
|
+
SecurityGroups?: string[];
|
|
142
|
+
Subnets?: string[];
|
|
143
|
+
};
|
|
144
|
+
/**
|
|
145
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.ExpressGatewayServiceScalingMetric`.
|
|
146
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayservicescalingmetric.html}
|
|
147
|
+
*/
|
|
148
|
+
export type ExpressGatewayServiceScalingMetric = "AVERAGE_CPU" | "AVERAGE_MEMORY" | "REQUEST_COUNT_PER_TARGET";
|
|
149
|
+
/**
|
|
150
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.ExpressGatewayServiceStatus`.
|
|
151
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayservicestatus.html}
|
|
152
|
+
*/
|
|
153
|
+
export type ExpressGatewayServiceStatus = {
|
|
154
|
+
StatusCode?: ExpressGatewayServiceStatusCode;
|
|
155
|
+
};
|
|
156
|
+
/**
|
|
157
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.ExpressGatewayServiceStatusCode`.
|
|
158
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-expressgatewayservicestatuscode.html}
|
|
159
|
+
*/
|
|
160
|
+
export type ExpressGatewayServiceStatusCode = "ACTIVE" | "DRAINING" | "INACTIVE";
|
|
161
|
+
/**
|
|
162
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.IngressPathSummary`.
|
|
163
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-ingresspathsummary.html}
|
|
164
|
+
*/
|
|
165
|
+
export type IngressPathSummary = {
|
|
166
|
+
AccessType?: AccessType;
|
|
167
|
+
Endpoint?: string;
|
|
168
|
+
};
|
|
169
|
+
/**
|
|
170
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.KeyValuePair`.
|
|
171
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-keyvaluepair.html}
|
|
172
|
+
*/
|
|
173
|
+
export type KeyValuePair = {
|
|
174
|
+
Name: string;
|
|
175
|
+
Value: string;
|
|
176
|
+
};
|
|
177
|
+
/**
|
|
178
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.Secret`.
|
|
179
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-secret.html}
|
|
180
|
+
*/
|
|
181
|
+
export type Secret = {
|
|
182
|
+
Name: string;
|
|
183
|
+
ValueFrom: string;
|
|
184
|
+
};
|
|
185
|
+
/**
|
|
186
|
+
* Type definition for `AWS::ECS::ExpressGatewayService.Tag`.
|
|
187
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-expressgatewayservice-tag.html}
|
|
188
|
+
*/
|
|
189
|
+
export type Tag = {
|
|
190
|
+
Key: string;
|
|
191
|
+
Value: string;
|
|
192
|
+
};
|
|
193
|
+
/**
|
|
194
|
+
* Resource Type definition for AWS::ECS::ExpressGatewayService
|
|
195
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-expressgatewayservice.html}
|
|
196
|
+
*/
|
|
197
|
+
export declare class ECSExpressGatewayService extends $Resource<"AWS::ECS::ExpressGatewayService", ECSExpressGatewayServiceProperties, ECSExpressGatewayServiceAttributes> {
|
|
198
|
+
static readonly Type = "AWS::ECS::ExpressGatewayService";
|
|
199
|
+
constructor(logicalId: string, properties: ECSExpressGatewayServiceProperties, options?: $ResourceOptions);
|
|
200
|
+
}
|
|
201
|
+
//# sourceMappingURL=AWS-ECS-ExpressGatewayService.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Type definition for AWS::ECS::ExpressGatewayService
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-expressgatewayservice.html}
|
|
5
|
+
*/
|
|
6
|
+
export class ECSExpressGatewayService extends $Resource {
|
|
7
|
+
static Type = "AWS::ECS::ExpressGatewayService";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, ECSExpressGatewayService.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-ECS-ExpressGatewayService.js.map
|
package/lib/AWS-EKS-Cluster.d.ts
CHANGED
|
@@ -18,6 +18,10 @@ export type EKSClusterProperties = {
|
|
|
18
18
|
* Todo: add description
|
|
19
19
|
*/
|
|
20
20
|
ComputeConfig?: ComputeConfig;
|
|
21
|
+
/**
|
|
22
|
+
* Configuration for provisioned control plane scaling.
|
|
23
|
+
*/
|
|
24
|
+
ControlPlaneScalingConfig?: ControlPlaneScalingConfig;
|
|
21
25
|
/**
|
|
22
26
|
* Set this value to true to enable deletion protection for the cluster.
|
|
23
27
|
*/
|
|
@@ -190,6 +194,17 @@ export type ControlPlanePlacement = {
|
|
|
190
194
|
*/
|
|
191
195
|
GroupName?: string;
|
|
192
196
|
};
|
|
197
|
+
/**
|
|
198
|
+
* Type definition for `AWS::EKS::Cluster.ControlPlaneScalingConfig`.
|
|
199
|
+
* Configuration for provisioned control plane scaling.
|
|
200
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-controlplanescalingconfig.html}
|
|
201
|
+
*/
|
|
202
|
+
export type ControlPlaneScalingConfig = {
|
|
203
|
+
/**
|
|
204
|
+
* The scaling tier for the provisioned control plane.
|
|
205
|
+
*/
|
|
206
|
+
Tier?: "standard" | "tier-xl" | "tier-2xl" | "tier-4xl";
|
|
207
|
+
};
|
|
193
208
|
/**
|
|
194
209
|
* Type definition for `AWS::EKS::Cluster.ElasticLoadBalancing`.
|
|
195
210
|
* Todo: add description
|
|
@@ -167,6 +167,7 @@ export type RootVolumeConfiguration = {
|
|
|
167
167
|
*/
|
|
168
168
|
export type SelfManagedActiveDirectoryConfiguration = {
|
|
169
169
|
DnsIps?: string[];
|
|
170
|
+
DomainJoinServiceAccountSecret?: string;
|
|
170
171
|
DomainName?: string;
|
|
171
172
|
FileSystemAdministratorsGroup?: string;
|
|
172
173
|
OrganizationalUnitDistinguishedName?: string;
|
|
@@ -35,6 +35,7 @@ export type ActiveDirectoryConfiguration = {
|
|
|
35
35
|
*/
|
|
36
36
|
export type SelfManagedActiveDirectoryConfiguration = {
|
|
37
37
|
DnsIps?: string[];
|
|
38
|
+
DomainJoinServiceAccountSecret?: string;
|
|
38
39
|
DomainName?: string;
|
|
39
40
|
FileSystemAdministratorsGroup?: string;
|
|
40
41
|
OrganizationalUnitDistinguishedName?: string;
|
|
@@ -39,6 +39,10 @@ export type KinesisVideoStreamProperties = {
|
|
|
39
39
|
* @pattern `[a-zA-Z0-9_.-]+`
|
|
40
40
|
*/
|
|
41
41
|
Name?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Configuration for the storage tier of the Kinesis Video Stream.
|
|
44
|
+
*/
|
|
45
|
+
StreamStorageConfiguration?: StreamStorageConfiguration;
|
|
42
46
|
/**
|
|
43
47
|
* An array of key-value pairs associated with the Kinesis Video Stream.
|
|
44
48
|
* @minLength `1`
|
|
@@ -56,6 +60,17 @@ export type KinesisVideoStreamAttributes = {
|
|
|
56
60
|
*/
|
|
57
61
|
Arn: string;
|
|
58
62
|
};
|
|
63
|
+
/**
|
|
64
|
+
* Type definition for `AWS::KinesisVideo::Stream.StreamStorageConfiguration`.
|
|
65
|
+
* Configuration for the storage tier of the Kinesis Video Stream.
|
|
66
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisvideo-stream-streamstorageconfiguration.html}
|
|
67
|
+
*/
|
|
68
|
+
export type StreamStorageConfiguration = {
|
|
69
|
+
/**
|
|
70
|
+
* The storage tier for the Kinesis Video Stream. Determines the storage class used for stream data.
|
|
71
|
+
*/
|
|
72
|
+
DefaultStorageTier?: "HOT" | "WARM";
|
|
73
|
+
};
|
|
59
74
|
/**
|
|
60
75
|
* Type definition for `AWS::KinesisVideo::Stream.Tag`.
|
|
61
76
|
* A key-value pair to associated with the Kinesis Video Stream.
|
|
@@ -6,26 +6,11 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-collection.html}
|
|
7
7
|
*/
|
|
8
8
|
export type OpenSearchServerlessCollectionProperties = {
|
|
9
|
-
/**
|
|
10
|
-
* The name of the collection group.
|
|
11
|
-
|
|
12
|
-
The name must meet the following criteria:
|
|
13
|
-
Unique to your account and AWS Region
|
|
14
|
-
Starts with a lowercase letter
|
|
15
|
-
Contains only lowercase letters a-z, the numbers 0-9 and the hyphen (-)
|
|
16
|
-
Contains between 3 and 32 characters
|
|
17
|
-
|
|
18
|
-
*/
|
|
19
|
-
CollectionGroupName?: string;
|
|
20
9
|
/**
|
|
21
10
|
* The description of the collection
|
|
22
11
|
* @maxLength `1000`
|
|
23
12
|
*/
|
|
24
13
|
Description?: string;
|
|
25
|
-
/**
|
|
26
|
-
* The configuration to encrypt the collection
|
|
27
|
-
*/
|
|
28
|
-
EncryptionConfig?: EncryptionConfig;
|
|
29
14
|
/**
|
|
30
15
|
* The name of the collection.
|
|
31
16
|
|
|
@@ -89,21 +74,6 @@ export type OpenSearchServerlessCollectionAttributes = {
|
|
|
89
74
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-collection-collectiontype.html}
|
|
90
75
|
*/
|
|
91
76
|
export type CollectionType = "SEARCH" | "TIMESERIES" | "VECTORSEARCH";
|
|
92
|
-
/**
|
|
93
|
-
* Type definition for `AWS::OpenSearchServerless::Collection.EncryptionConfig`.
|
|
94
|
-
* The configuration to encrypt the collection
|
|
95
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-collection-encryptionconfig.html}
|
|
96
|
-
*/
|
|
97
|
-
export type EncryptionConfig = {
|
|
98
|
-
/**
|
|
99
|
-
* The configuration to encrypt the collection with AWS owned key
|
|
100
|
-
*/
|
|
101
|
-
AWSOwnedKey?: boolean;
|
|
102
|
-
/**
|
|
103
|
-
* The ARN of the KMS key to encrypt the collection with
|
|
104
|
-
*/
|
|
105
|
-
KmsKeyArn?: string;
|
|
106
|
-
};
|
|
107
77
|
/**
|
|
108
78
|
* Type definition for `AWS::OpenSearchServerless::Collection.StandbyReplicas`.
|
|
109
79
|
* The possible standby replicas for the collection
|