@awboost/cfn-resource-types 0.1.51 → 0.1.52
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-CleanRoomsML-TrainingDataset.d.ts +155 -0
- package/lib/AWS-CleanRoomsML-TrainingDataset.js +12 -0
- package/lib/AWS-Deadline-Farm.d.ts +45 -0
- package/lib/AWS-Deadline-Farm.js +12 -0
- package/lib/AWS-Deadline-Fleet.d.ts +348 -0
- package/lib/AWS-Deadline-Fleet.js +12 -0
- package/lib/AWS-Deadline-LicenseEndpoint.d.ts +58 -0
- package/lib/AWS-Deadline-LicenseEndpoint.js +12 -0
- package/lib/AWS-Deadline-MeteredProduct.d.ts +50 -0
- package/lib/AWS-Deadline-MeteredProduct.js +12 -0
- package/lib/AWS-Deadline-Queue.d.ts +134 -0
- package/lib/AWS-Deadline-Queue.js +12 -0
- package/lib/AWS-Deadline-QueueEnvironment.d.ts +52 -0
- package/lib/AWS-Deadline-QueueEnvironment.js +12 -0
- package/lib/AWS-Deadline-QueueFleetAssociation.d.ts +29 -0
- package/lib/AWS-Deadline-QueueFleetAssociation.js +12 -0
- package/lib/AWS-Deadline-StorageProfile.d.ts +70 -0
- package/lib/AWS-Deadline-StorageProfile.js +12 -0
- package/lib/AWS-EC2-Subnet.d.ts +7 -4
- package/lib/AWS-EntityResolution-IdNamespace.d.ts +130 -0
- package/lib/AWS-EntityResolution-IdNamespace.js +13 -0
- package/lib/AWS-EntityResolution-PolicyStatement.d.ts +44 -0
- package/lib/AWS-EntityResolution-PolicyStatement.js +13 -0
- package/lib/AWS-GlobalAccelerator-CrossAccountAttachment.d.ts +71 -0
- package/lib/AWS-GlobalAccelerator-CrossAccountAttachment.js +12 -0
- package/lib/AWS-Lambda-Function.d.ts +5 -5
- package/lib/AWS-MediaTailor-Channel.d.ts +4 -0
- package/lib/AWS-RDS-CustomDBEngineVersion.d.ts +13 -1
- package/package.json +2 -2
|
@@ -0,0 +1,71 @@
|
|
|
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::GlobalAccelerator::CrossAccountAttachment
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-crossaccountattachment.html}
|
|
6
|
+
*/
|
|
7
|
+
export type GlobalAcceleratorCrossAccountAttachmentProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The Friendly identifier of the attachment.
|
|
10
|
+
* @minLength `1`
|
|
11
|
+
* @maxLength `64`
|
|
12
|
+
* @pattern `^[a-zA-Z0-9_-]{0,64}$`
|
|
13
|
+
*/
|
|
14
|
+
Name: string;
|
|
15
|
+
/**
|
|
16
|
+
* Principals to share the resources with.
|
|
17
|
+
*/
|
|
18
|
+
Principals?: string[];
|
|
19
|
+
/**
|
|
20
|
+
* Resources shared using the attachment.
|
|
21
|
+
*/
|
|
22
|
+
Resources?: Resource[];
|
|
23
|
+
Tags?: Tag[];
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* Attribute type definition for `AWS::GlobalAccelerator::CrossAccountAttachment`.
|
|
27
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-crossaccountattachment.html#aws-resource-globalaccelerator-crossaccountattachment-return-values}
|
|
28
|
+
*/
|
|
29
|
+
export type GlobalAcceleratorCrossAccountAttachmentAttributes = {
|
|
30
|
+
/**
|
|
31
|
+
* The Amazon Resource Name (ARN) of the attachment.
|
|
32
|
+
*/
|
|
33
|
+
AttachmentArn: string;
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* Type definition for `AWS::GlobalAccelerator::CrossAccountAttachment.Resource`.
|
|
37
|
+
* ARN of resource to share.
|
|
38
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-globalaccelerator-crossaccountattachment-resource.html}
|
|
39
|
+
*/
|
|
40
|
+
export type Resource = {
|
|
41
|
+
EndpointId: string;
|
|
42
|
+
Region?: string;
|
|
43
|
+
};
|
|
44
|
+
/**
|
|
45
|
+
* Type definition for `AWS::GlobalAccelerator::CrossAccountAttachment.Tag`.
|
|
46
|
+
* Tag is a key-value pair associated with Cross Account Attachment.
|
|
47
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-globalaccelerator-crossaccountattachment-tag.html}
|
|
48
|
+
*/
|
|
49
|
+
export type Tag = {
|
|
50
|
+
/**
|
|
51
|
+
* Key of the tag. Value can be 1 to 127 characters.
|
|
52
|
+
* @minLength `1`
|
|
53
|
+
* @maxLength `127`
|
|
54
|
+
*/
|
|
55
|
+
Key: string;
|
|
56
|
+
/**
|
|
57
|
+
* Value for the tag. Value can be 1 to 255 characters.
|
|
58
|
+
* @minLength `1`
|
|
59
|
+
* @maxLength `255`
|
|
60
|
+
*/
|
|
61
|
+
Value: string;
|
|
62
|
+
};
|
|
63
|
+
/**
|
|
64
|
+
* Resource Type definition for AWS::GlobalAccelerator::CrossAccountAttachment
|
|
65
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-crossaccountattachment.html}
|
|
66
|
+
*/
|
|
67
|
+
export declare class GlobalAcceleratorCrossAccountAttachment extends $Resource<"AWS::GlobalAccelerator::CrossAccountAttachment", GlobalAcceleratorCrossAccountAttachmentProperties, GlobalAcceleratorCrossAccountAttachmentAttributes> {
|
|
68
|
+
static readonly Type = "AWS::GlobalAccelerator::CrossAccountAttachment";
|
|
69
|
+
constructor(logicalId: string, properties: GlobalAcceleratorCrossAccountAttachmentProperties, options?: $ResourceOptions);
|
|
70
|
+
}
|
|
71
|
+
//# sourceMappingURL=AWS-GlobalAccelerator-CrossAccountAttachment.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::GlobalAccelerator::CrossAccountAttachment
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-globalaccelerator-crossaccountattachment.html}
|
|
5
|
+
*/
|
|
6
|
+
export class GlobalAcceleratorCrossAccountAttachment extends $Resource {
|
|
7
|
+
static Type = "AWS::GlobalAccelerator::CrossAccountAttachment";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, GlobalAcceleratorCrossAccountAttachment.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-GlobalAccelerator-CrossAccountAttachment.js.map
|
|
@@ -298,11 +298,11 @@ export type RuntimeManagementConfig = {
|
|
|
298
298
|
RuntimeVersionArn?: string;
|
|
299
299
|
/**
|
|
300
300
|
* Specify the runtime update mode.
|
|
301
|
-
+
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
301
|
+
+ *Auto (default)* - Automatically update to the most recent and secure runtime version using a [Two-phase runtime version rollout](https://docs.aws.amazon.com/lambda/latest/dg/runtimes-update.html#runtime-management-two-phase). This is the best choice for most customers to ensure they always benefit from runtime updates.
|
|
302
|
+
+ *FunctionUpdate* - LAM updates the runtime of you function to the most recent and secure runtime version when you update your function. This approach synchronizes runtime updates with function deployments, giving you control over when runtime updates are applied and allowing you to detect and mitigate rare runtime update incompatibilities early. When using this setting, you need to regularly update your functions to keep their runtime up-to-date.
|
|
303
|
+
+ *Manual* - You specify a runtime version in your function configuration. The function will use this runtime version indefinitely. In the rare case where a new runtime version is incompatible with an existing function, this allows you to roll back your function to an earlier runtime version. For more information, see [Roll back a runtime version](https://docs.aws.amazon.com/lambda/latest/dg/runtimes-update.html#runtime-management-rollback).
|
|
304
|
+
|
|
305
|
+
*Valid Values*: ``Auto`` | ``FunctionUpdate`` | ``Manual``
|
|
306
306
|
*/
|
|
307
307
|
UpdateRuntimeOn: "Auto" | "FunctionUpdate" | "Manual";
|
|
308
308
|
};
|
|
@@ -5,6 +5,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediatailor-channel.html}
|
|
6
6
|
*/
|
|
7
7
|
export type MediaTailorChannelProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* <p>The list of audiences defined in channel.</p>
|
|
10
|
+
*/
|
|
11
|
+
Audiences?: string[];
|
|
8
12
|
ChannelName: string;
|
|
9
13
|
/**
|
|
10
14
|
* <p>Slate VOD source configuration.</p>
|
|
@@ -10,7 +10,7 @@ export type RDSCustomDBEngineVersionProperties = {
|
|
|
10
10
|
* @minLength `3`
|
|
11
11
|
* @maxLength `63`
|
|
12
12
|
*/
|
|
13
|
-
DatabaseInstallationFilesS3BucketName
|
|
13
|
+
DatabaseInstallationFilesS3BucketName?: string;
|
|
14
14
|
/**
|
|
15
15
|
* The Amazon S3 directory that contains the database installation files for your CEV. For example, a valid bucket name is `123456789012/cev1`. If this setting isn't specified, no prefix is assumed.
|
|
16
16
|
* @minLength `1`
|
|
@@ -35,6 +35,10 @@ export type RDSCustomDBEngineVersionProperties = {
|
|
|
35
35
|
* @maxLength `60`
|
|
36
36
|
*/
|
|
37
37
|
EngineVersion: string;
|
|
38
|
+
/**
|
|
39
|
+
* The identifier of Amazon Machine Image (AMI) used for CEV.
|
|
40
|
+
*/
|
|
41
|
+
ImageId?: string;
|
|
38
42
|
/**
|
|
39
43
|
* The AWS KMS key identifier for an encrypted CEV. A symmetric KMS key is required for RDS Custom, but optional for Amazon RDS.
|
|
40
44
|
* @minLength `1`
|
|
@@ -47,6 +51,10 @@ export type RDSCustomDBEngineVersionProperties = {
|
|
|
47
51
|
* @maxLength `51000`
|
|
48
52
|
*/
|
|
49
53
|
Manifest?: string;
|
|
54
|
+
/**
|
|
55
|
+
* The identifier of the source custom engine version.
|
|
56
|
+
*/
|
|
57
|
+
SourceCustomDbEngineVersionIdentifier?: string;
|
|
50
58
|
/**
|
|
51
59
|
* The availability status to be assigned to the CEV.
|
|
52
60
|
*/
|
|
@@ -55,6 +63,10 @@ export type RDSCustomDBEngineVersionProperties = {
|
|
|
55
63
|
* An array of key-value pairs to apply to this resource.
|
|
56
64
|
*/
|
|
57
65
|
Tags?: Tag[];
|
|
66
|
+
/**
|
|
67
|
+
* A value that indicates whether AWS provided latest image is applied automatically to the Custom Engine Version. By default, AWS provided latest image is applied automatically. This value is only applied on create.
|
|
68
|
+
*/
|
|
69
|
+
UseAwsProvidedLatestImage?: boolean;
|
|
58
70
|
};
|
|
59
71
|
/**
|
|
60
72
|
* Attribute type definition for `AWS::RDS::CustomDBEngineVersion`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@awboost/cfn-resource-types",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.52",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"tag-version": "git tag -a ${npm_package_name}@${npm_package_version} -m ${npm_package_name}@v${npm_package_version}"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
|
-
"@awboost/cfn-codegen": "^0.2.
|
|
35
|
+
"@awboost/cfn-codegen": "^0.2.2"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"@awboost/cfn-template-builder": "^0.3.1"
|