@awboost/cfn-resource-types 0.1.64 → 0.1.66
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-ApplicationAutoScaling-ScalableTarget.d.ts +106 -20
- package/lib/AWS-ApplicationAutoScaling-ScalableTarget.js +3 -1
- package/lib/AWS-ConnectCampaigns-Campaign.d.ts +4 -0
- package/lib/AWS-DMS-DataProvider.d.ts +30 -21
- package/lib/AWS-DataSync-Task.d.ts +5 -1
- package/lib/AWS-EC2-CustomerGateway.d.ts +0 -5
- package/lib/AWS-EC2-TransitGatewayRouteTableAssociation.d.ts +7 -8
- package/lib/AWS-GameLift-ContainerGroupDefinition.d.ts +311 -0
- package/lib/AWS-GameLift-ContainerGroupDefinition.js +12 -0
- package/lib/AWS-GameLift-Fleet.d.ts +74 -1
- package/lib/AWS-GroundStation-Config.d.ts +12 -0
- package/lib/AWS-GroundStation-DataflowEndpointGroup.d.ts +6 -0
- package/lib/AWS-GroundStation-MissionProfile.d.ts +12 -0
- package/lib/AWS-KMS-Key.d.ts +15 -15
- package/lib/AWS-KMS-Key.js +3 -3
- package/lib/AWS-Lambda-Alias.d.ts +2 -37
- package/lib/AWS-RDS-DBInstance.d.ts +1 -0
- package/lib/AWS-Route53Profiles-Profile.d.ts +65 -0
- package/lib/AWS-Route53Profiles-Profile.js +12 -0
- package/lib/AWS-Route53Profiles-ProfileAssociation.d.ts +65 -0
- package/lib/AWS-Route53Profiles-ProfileAssociation.js +12 -0
- package/lib/AWS-Route53Profiles-ProfileResourceAssociation.d.ts +47 -0
- package/lib/AWS-Route53Profiles-ProfileResourceAssociation.js +12 -0
- package/package.json +1 -1
|
@@ -5,29 +5,11 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html}
|
|
6
6
|
*/
|
|
7
7
|
export type LambdaAliasProperties = {
|
|
8
|
-
/**
|
|
9
|
-
* A description of the alias.
|
|
10
|
-
*/
|
|
11
8
|
Description?: string;
|
|
12
|
-
/**
|
|
13
|
-
* The name of the Lambda function.
|
|
14
|
-
*/
|
|
15
9
|
FunctionName: string;
|
|
16
|
-
/**
|
|
17
|
-
* The function version that the alias invokes.
|
|
18
|
-
*/
|
|
19
10
|
FunctionVersion: string;
|
|
20
|
-
/**
|
|
21
|
-
* The name of the alias.
|
|
22
|
-
*/
|
|
23
11
|
Name: string;
|
|
24
|
-
/**
|
|
25
|
-
* Specifies a provisioned concurrency configuration for a function's alias.
|
|
26
|
-
*/
|
|
27
12
|
ProvisionedConcurrencyConfig?: ProvisionedConcurrencyConfiguration;
|
|
28
|
-
/**
|
|
29
|
-
* The routing configuration of the alias.
|
|
30
|
-
*/
|
|
31
13
|
RoutingConfig?: AliasRoutingConfiguration;
|
|
32
14
|
};
|
|
33
15
|
/**
|
|
@@ -35,46 +17,29 @@ export type LambdaAliasProperties = {
|
|
|
35
17
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-alias.html#aws-resource-lambda-alias-return-values}
|
|
36
18
|
*/
|
|
37
19
|
export type LambdaAliasAttributes = {
|
|
38
|
-
/**
|
|
39
|
-
* Lambda Alias ARN generated by the service.
|
|
40
|
-
*/
|
|
41
20
|
AliasArn: string;
|
|
21
|
+
Id: string;
|
|
42
22
|
};
|
|
43
23
|
/**
|
|
44
24
|
* Type definition for `AWS::Lambda::Alias.AliasRoutingConfiguration`.
|
|
45
|
-
* The traffic-shifting configuration of a Lambda function alias.
|
|
46
25
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-aliasroutingconfiguration.html}
|
|
47
26
|
*/
|
|
48
27
|
export type AliasRoutingConfiguration = {
|
|
49
|
-
|
|
50
|
-
* The second version, and the percentage of traffic that's routed to it.
|
|
51
|
-
*/
|
|
52
|
-
AdditionalVersionWeights?: VersionWeight[];
|
|
28
|
+
AdditionalVersionWeights: VersionWeight[];
|
|
53
29
|
};
|
|
54
30
|
/**
|
|
55
31
|
* Type definition for `AWS::Lambda::Alias.ProvisionedConcurrencyConfiguration`.
|
|
56
|
-
* A provisioned concurrency configuration for a function's alias.
|
|
57
32
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-provisionedconcurrencyconfiguration.html}
|
|
58
33
|
*/
|
|
59
34
|
export type ProvisionedConcurrencyConfiguration = {
|
|
60
|
-
/**
|
|
61
|
-
* The amount of provisioned concurrency to allocate for the alias.
|
|
62
|
-
*/
|
|
63
35
|
ProvisionedConcurrentExecutions: number;
|
|
64
36
|
};
|
|
65
37
|
/**
|
|
66
38
|
* Type definition for `AWS::Lambda::Alias.VersionWeight`.
|
|
67
|
-
* The traffic-shifting configuration of a Lambda function alias.
|
|
68
39
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lambda-alias-versionweight.html}
|
|
69
40
|
*/
|
|
70
41
|
export type VersionWeight = {
|
|
71
|
-
/**
|
|
72
|
-
* The qualifier of the second version.
|
|
73
|
-
*/
|
|
74
42
|
FunctionVersion: string;
|
|
75
|
-
/**
|
|
76
|
-
* The percentage of traffic that the alias routes to the second version.
|
|
77
|
-
*/
|
|
78
43
|
FunctionWeight: number;
|
|
79
44
|
};
|
|
80
45
|
/**
|
|
@@ -90,6 +90,7 @@ export type RDSDBInstanceProperties = {
|
|
|
90
90
|
* A value that indicates whether minor engine upgrades are applied automatically to the DB instance during the maintenance window. By default, minor engine upgrades are applied automatically.
|
|
91
91
|
*/
|
|
92
92
|
AutoMinorVersionUpgrade?: boolean;
|
|
93
|
+
AutomaticBackupReplicationKmsKeyId?: string;
|
|
93
94
|
/**
|
|
94
95
|
* The destination region for the backup replication of the DB instance. For more info, see [Replicating automated backups to another Region](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_ReplicateBackups.html) in the *Amazon RDS User Guide*.
|
|
95
96
|
*/
|
|
@@ -0,0 +1,65 @@
|
|
|
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::Route53Profiles::Profile
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profile.html}
|
|
6
|
+
*/
|
|
7
|
+
export type Route53ProfilesProfileProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The name of the profile.
|
|
10
|
+
* @minLength `1`
|
|
11
|
+
* @maxLength `64`
|
|
12
|
+
*/
|
|
13
|
+
Name: string;
|
|
14
|
+
/**
|
|
15
|
+
* An array of key-value pairs to apply to this resource.
|
|
16
|
+
*/
|
|
17
|
+
Tags?: Tag[];
|
|
18
|
+
};
|
|
19
|
+
/**
|
|
20
|
+
* Attribute type definition for `AWS::Route53Profiles::Profile`.
|
|
21
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profile.html#aws-resource-route53profiles-profile-return-values}
|
|
22
|
+
*/
|
|
23
|
+
export type Route53ProfilesProfileAttributes = {
|
|
24
|
+
/**
|
|
25
|
+
* The Amazon Resource Name (ARN) of the resolver profile.
|
|
26
|
+
*/
|
|
27
|
+
Arn: string;
|
|
28
|
+
/**
|
|
29
|
+
* The id of the creator request
|
|
30
|
+
* @minLength `1`
|
|
31
|
+
* @maxLength `64`
|
|
32
|
+
*/
|
|
33
|
+
ClientToken: string;
|
|
34
|
+
/**
|
|
35
|
+
* The ID of the profile.
|
|
36
|
+
*/
|
|
37
|
+
Id: string;
|
|
38
|
+
};
|
|
39
|
+
/**
|
|
40
|
+
* Type definition for `AWS::Route53Profiles::Profile.Tag`.
|
|
41
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53profiles-profile-tag.html}
|
|
42
|
+
*/
|
|
43
|
+
export type Tag = {
|
|
44
|
+
/**
|
|
45
|
+
* 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 -.
|
|
46
|
+
* @minLength `1`
|
|
47
|
+
* @maxLength `128`
|
|
48
|
+
*/
|
|
49
|
+
Key: string;
|
|
50
|
+
/**
|
|
51
|
+
* 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 -.
|
|
52
|
+
* @minLength `0`
|
|
53
|
+
* @maxLength `256`
|
|
54
|
+
*/
|
|
55
|
+
Value: string;
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* Resource Type definition for AWS::Route53Profiles::Profile
|
|
59
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profile.html}
|
|
60
|
+
*/
|
|
61
|
+
export declare class Route53ProfilesProfile extends $Resource<"AWS::Route53Profiles::Profile", Route53ProfilesProfileProperties, Route53ProfilesProfileAttributes> {
|
|
62
|
+
static readonly Type = "AWS::Route53Profiles::Profile";
|
|
63
|
+
constructor(logicalId: string, properties: Route53ProfilesProfileProperties, options?: $ResourceOptions);
|
|
64
|
+
}
|
|
65
|
+
//# sourceMappingURL=AWS-Route53Profiles-Profile.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::Route53Profiles::Profile
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profile.html}
|
|
5
|
+
*/
|
|
6
|
+
export class Route53ProfilesProfile extends $Resource {
|
|
7
|
+
static Type = "AWS::Route53Profiles::Profile";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, Route53ProfilesProfile.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Route53Profiles-Profile.js.map
|
|
@@ -0,0 +1,65 @@
|
|
|
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::Route53Profiles::ProfileAssociation
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profileassociation.html}
|
|
6
|
+
*/
|
|
7
|
+
export type Route53ProfilesProfileAssociationProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The Amazon Resource Name (ARN) of the profile association.
|
|
10
|
+
*/
|
|
11
|
+
Arn?: string;
|
|
12
|
+
/**
|
|
13
|
+
* The name of an association between a Profile and a VPC.
|
|
14
|
+
*/
|
|
15
|
+
Name: string;
|
|
16
|
+
/**
|
|
17
|
+
* The ID of the profile that you associated with the resource that is specified by ResourceId.
|
|
18
|
+
*/
|
|
19
|
+
ProfileId: string;
|
|
20
|
+
/**
|
|
21
|
+
* The resource that you associated the profile with.
|
|
22
|
+
*/
|
|
23
|
+
ResourceId: string;
|
|
24
|
+
/**
|
|
25
|
+
* An array of key-value pairs to apply to this resource.
|
|
26
|
+
*/
|
|
27
|
+
Tags?: Tag[];
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* Attribute type definition for `AWS::Route53Profiles::ProfileAssociation`.
|
|
31
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profileassociation.html#aws-resource-route53profiles-profileassociation-return-values}
|
|
32
|
+
*/
|
|
33
|
+
export type Route53ProfilesProfileAssociationAttributes = {
|
|
34
|
+
/**
|
|
35
|
+
* Primary Identifier for Profile Association
|
|
36
|
+
*/
|
|
37
|
+
Id: string;
|
|
38
|
+
};
|
|
39
|
+
/**
|
|
40
|
+
* Type definition for `AWS::Route53Profiles::ProfileAssociation.Tag`.
|
|
41
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53profiles-profileassociation-tag.html}
|
|
42
|
+
*/
|
|
43
|
+
export type Tag = {
|
|
44
|
+
/**
|
|
45
|
+
* 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 -.
|
|
46
|
+
* @minLength `1`
|
|
47
|
+
* @maxLength `128`
|
|
48
|
+
*/
|
|
49
|
+
Key: string;
|
|
50
|
+
/**
|
|
51
|
+
* 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 -.
|
|
52
|
+
* @minLength `0`
|
|
53
|
+
* @maxLength `256`
|
|
54
|
+
*/
|
|
55
|
+
Value: string;
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* Resource Type definition for AWS::Route53Profiles::ProfileAssociation
|
|
59
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profileassociation.html}
|
|
60
|
+
*/
|
|
61
|
+
export declare class Route53ProfilesProfileAssociation extends $Resource<"AWS::Route53Profiles::ProfileAssociation", Route53ProfilesProfileAssociationProperties, Route53ProfilesProfileAssociationAttributes> {
|
|
62
|
+
static readonly Type = "AWS::Route53Profiles::ProfileAssociation";
|
|
63
|
+
constructor(logicalId: string, properties: Route53ProfilesProfileAssociationProperties, options?: $ResourceOptions);
|
|
64
|
+
}
|
|
65
|
+
//# sourceMappingURL=AWS-Route53Profiles-ProfileAssociation.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::Route53Profiles::ProfileAssociation
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profileassociation.html}
|
|
5
|
+
*/
|
|
6
|
+
export class Route53ProfilesProfileAssociation extends $Resource {
|
|
7
|
+
static Type = "AWS::Route53Profiles::ProfileAssociation";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, Route53ProfilesProfileAssociation.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Route53Profiles-ProfileAssociation.js.map
|
|
@@ -0,0 +1,47 @@
|
|
|
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::Route53Profiles::ProfileResourceAssociation
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profileresourceassociation.html}
|
|
6
|
+
*/
|
|
7
|
+
export type Route53ProfilesProfileResourceAssociationProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The name of an association between the Profile and resource.
|
|
10
|
+
*/
|
|
11
|
+
Name: string;
|
|
12
|
+
/**
|
|
13
|
+
* The ID of the profile that you associated the resource to that is specified by ResourceArn.
|
|
14
|
+
*/
|
|
15
|
+
ProfileId: string;
|
|
16
|
+
/**
|
|
17
|
+
* The arn of the resource that you associated to the Profile.
|
|
18
|
+
*/
|
|
19
|
+
ResourceArn: string;
|
|
20
|
+
/**
|
|
21
|
+
* A JSON-formatted string with key-value pairs specifying the properties of the associated resource.
|
|
22
|
+
*/
|
|
23
|
+
ResourceProperties?: string;
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* Attribute type definition for `AWS::Route53Profiles::ProfileResourceAssociation`.
|
|
27
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profileresourceassociation.html#aws-resource-route53profiles-profileresourceassociation-return-values}
|
|
28
|
+
*/
|
|
29
|
+
export type Route53ProfilesProfileResourceAssociationAttributes = {
|
|
30
|
+
/**
|
|
31
|
+
* Primary Identifier for Profile Resource Association
|
|
32
|
+
*/
|
|
33
|
+
Id: string;
|
|
34
|
+
/**
|
|
35
|
+
* The type of the resource associated to the Profile.
|
|
36
|
+
*/
|
|
37
|
+
ResourceType: string;
|
|
38
|
+
};
|
|
39
|
+
/**
|
|
40
|
+
* Resource Type definition for AWS::Route53Profiles::ProfileResourceAssociation
|
|
41
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profileresourceassociation.html}
|
|
42
|
+
*/
|
|
43
|
+
export declare class Route53ProfilesProfileResourceAssociation extends $Resource<"AWS::Route53Profiles::ProfileResourceAssociation", Route53ProfilesProfileResourceAssociationProperties, Route53ProfilesProfileResourceAssociationAttributes> {
|
|
44
|
+
static readonly Type = "AWS::Route53Profiles::ProfileResourceAssociation";
|
|
45
|
+
constructor(logicalId: string, properties: Route53ProfilesProfileResourceAssociationProperties, options?: $ResourceOptions);
|
|
46
|
+
}
|
|
47
|
+
//# sourceMappingURL=AWS-Route53Profiles-ProfileResourceAssociation.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::Route53Profiles::ProfileResourceAssociation
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53profiles-profileresourceassociation.html}
|
|
5
|
+
*/
|
|
6
|
+
export class Route53ProfilesProfileResourceAssociation extends $Resource {
|
|
7
|
+
static Type = "AWS::Route53Profiles::ProfileResourceAssociation";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, Route53ProfilesProfileResourceAssociation.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Route53Profiles-ProfileResourceAssociation.js.map
|