@awboost/cfn-resource-types 0.1.63 → 0.1.65
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-Bedrock-Agent.d.ts +4 -0
- package/lib/AWS-Bedrock-Guardrail.d.ts +351 -0
- package/lib/AWS-Bedrock-Guardrail.js +12 -0
- package/lib/AWS-CUR-ReportDefinition.d.ts +1 -1
- package/lib/AWS-DataSync-Task.d.ts +5 -1
- 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-KMS-Key.d.ts +15 -15
- package/lib/AWS-KMS-Key.js +3 -3
- package/lib/AWS-Lambda-Alias.d.ts +37 -2
- package/lib/AWS-PaymentCryptography-Alias.d.ts +29 -0
- package/lib/AWS-PaymentCryptography-Alias.js +12 -0
- package/lib/AWS-PaymentCryptography-Key.d.ts +119 -0
- package/lib/AWS-PaymentCryptography-Key.js +12 -0
- package/lib/AWS-QuickSight-Analysis.d.ts +301 -88
- package/lib/AWS-QuickSight-Dashboard.d.ts +398 -100
- package/lib/AWS-QuickSight-Template.d.ts +380 -98
- package/lib/AWS-QuickSight-Theme.d.ts +286 -59
- 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
|
@@ -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
|