@awboost/cfn-resource-types 0.1.270 → 0.1.272
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-Batch-ConsumableResource.d.ts +59 -0
- package/lib/AWS-Batch-ConsumableResource.js +12 -0
- package/lib/AWS-Batch-JobDefinition.d.ts +21 -0
- package/lib/AWS-DataZone-Domain.d.ts +9 -0
- package/lib/AWS-ECR-RepositoryCreationTemplate.d.ts +27 -29
- package/lib/AWS-ECR-RepositoryCreationTemplate.js +2 -1
- package/lib/AWS-PCAConnectorAD-Connector.d.ts +7 -4
- package/lib/AWS-PCAConnectorAD-Connector.js +2 -1
- package/lib/AWS-QuickSight-Template.d.ts +7 -155
- package/lib/AWS-Wisdom-AIAgent.d.ts +1 -17
- package/lib/AWS-Wisdom-AIPrompt.d.ts +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,59 @@
|
|
|
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 schema for AWS::Batch::ConsumableResource
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-consumableresource.html}
|
|
6
|
+
*/
|
|
7
|
+
export type BatchConsumableResourceProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* Name of ConsumableResource.
|
|
10
|
+
* @pattern ``
|
|
11
|
+
*/
|
|
12
|
+
ConsumableResourceName?: string;
|
|
13
|
+
/**
|
|
14
|
+
* Type of Consumable Resource.
|
|
15
|
+
*/
|
|
16
|
+
ResourceType: ResourceType;
|
|
17
|
+
/**
|
|
18
|
+
* A key-value pair to associate with a resource.
|
|
19
|
+
*/
|
|
20
|
+
Tags?: Record<string, string>;
|
|
21
|
+
/**
|
|
22
|
+
* Total Quantity of ConsumableResource.
|
|
23
|
+
*/
|
|
24
|
+
TotalQuantity: number;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* Attribute type definition for `AWS::Batch::ConsumableResource`.
|
|
28
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-consumableresource.html#aws-resource-batch-consumableresource-return-values}
|
|
29
|
+
*/
|
|
30
|
+
export type BatchConsumableResourceAttributes = {
|
|
31
|
+
/**
|
|
32
|
+
* Available Quantity of ConsumableResource.
|
|
33
|
+
*/
|
|
34
|
+
AvailableQuantity: number;
|
|
35
|
+
/**
|
|
36
|
+
* ARN of the Consumable Resource.
|
|
37
|
+
*/
|
|
38
|
+
ConsumableResourceArn: string;
|
|
39
|
+
CreatedAt: number;
|
|
40
|
+
/**
|
|
41
|
+
* In-use Quantity of ConsumableResource.
|
|
42
|
+
*/
|
|
43
|
+
InUseQuantity: number;
|
|
44
|
+
};
|
|
45
|
+
/**
|
|
46
|
+
* Type definition for `AWS::Batch::ConsumableResource.ResourceType`.
|
|
47
|
+
* Type of Consumable Resource.
|
|
48
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-consumableresource-resourcetype.html}
|
|
49
|
+
*/
|
|
50
|
+
export type ResourceType = "REPLENISHABLE" | "NON_REPLENISHABLE";
|
|
51
|
+
/**
|
|
52
|
+
* Resource Type schema for AWS::Batch::ConsumableResource
|
|
53
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-consumableresource.html}
|
|
54
|
+
*/
|
|
55
|
+
export declare class BatchConsumableResource extends $Resource<"AWS::Batch::ConsumableResource", BatchConsumableResourceProperties, BatchConsumableResourceAttributes> {
|
|
56
|
+
static readonly Type = "AWS::Batch::ConsumableResource";
|
|
57
|
+
constructor(logicalId: string, properties: BatchConsumableResourceProperties, options?: $ResourceOptions);
|
|
58
|
+
}
|
|
59
|
+
//# sourceMappingURL=AWS-Batch-ConsumableResource.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Type schema for AWS::Batch::ConsumableResource
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-consumableresource.html}
|
|
5
|
+
*/
|
|
6
|
+
export class BatchConsumableResource extends $Resource {
|
|
7
|
+
static Type = "AWS::Batch::ConsumableResource";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, BatchConsumableResource.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Batch-ConsumableResource.js.map
|
|
@@ -5,6 +5,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html}
|
|
6
6
|
*/
|
|
7
7
|
export type BatchJobDefinitionProperties = {
|
|
8
|
+
ConsumableResourceProperties?: ConsumableResourceProperties;
|
|
8
9
|
ContainerProperties?: ContainerProperties;
|
|
9
10
|
EcsProperties?: EcsProperties;
|
|
10
11
|
EksProperties?: EksProperties;
|
|
@@ -25,6 +26,25 @@ export type BatchJobDefinitionProperties = {
|
|
|
25
26
|
Timeout?: JobTimeout;
|
|
26
27
|
Type: string;
|
|
27
28
|
};
|
|
29
|
+
/**
|
|
30
|
+
* Type definition for `AWS::Batch::JobDefinition.ConsumableResourceProperties`.
|
|
31
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-consumableresourceproperties.html}
|
|
32
|
+
*/
|
|
33
|
+
export type ConsumableResourceProperties = {
|
|
34
|
+
ConsumableResourceList: ConsumableResourceRequirement[];
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* Type definition for `AWS::Batch::JobDefinition.ConsumableResourceRequirement`.
|
|
38
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-consumableresourcerequirement.html}
|
|
39
|
+
*/
|
|
40
|
+
export type ConsumableResourceRequirement = {
|
|
41
|
+
/**
|
|
42
|
+
* The ARN of the consumable resource the job definition should consume.
|
|
43
|
+
* @pattern `arn:[a-z0-9-\.]{1,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[^/].{0,1023}`
|
|
44
|
+
*/
|
|
45
|
+
ConsumableResource: string;
|
|
46
|
+
Quantity: number;
|
|
47
|
+
};
|
|
28
48
|
/**
|
|
29
49
|
* Type definition for `AWS::Batch::JobDefinition.ContainerProperties`.
|
|
30
50
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html}
|
|
@@ -375,6 +395,7 @@ export type NodeProperties = {
|
|
|
375
395
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-noderangeproperty.html}
|
|
376
396
|
*/
|
|
377
397
|
export type NodeRangeProperty = {
|
|
398
|
+
ConsumableResourceProperties?: ConsumableResourceProperties;
|
|
378
399
|
Container?: MultiNodeContainerProperties;
|
|
379
400
|
EcsProperties?: MultiNodeEcsProperties;
|
|
380
401
|
EksProperties?: EksProperties;
|
|
@@ -15,6 +15,10 @@ export type DataZoneDomainProperties = {
|
|
|
15
15
|
* @pattern `^arn:aws[^:]*:iam::\d{12}:(role|role/service-role)/[\w+=,.@-]*$`
|
|
16
16
|
*/
|
|
17
17
|
DomainExecutionRole: string;
|
|
18
|
+
/**
|
|
19
|
+
* The version of the domain.
|
|
20
|
+
*/
|
|
21
|
+
DomainVersion?: "V1" | "V2";
|
|
18
22
|
/**
|
|
19
23
|
* The identifier of the AWS Key Management Service (KMS) key that is used to encrypt the Amazon DataZone domain, metadata, and reporting data.
|
|
20
24
|
* @minLength `1`
|
|
@@ -26,6 +30,11 @@ export type DataZoneDomainProperties = {
|
|
|
26
30
|
* The name of the Amazon DataZone domain.
|
|
27
31
|
*/
|
|
28
32
|
Name: string;
|
|
33
|
+
/**
|
|
34
|
+
* The service role of the domain that is created.
|
|
35
|
+
* @pattern `^arn:aws[^:]*:iam::\d{12}:(role|role/service-role)/[\w+=,.@-]*$`
|
|
36
|
+
*/
|
|
37
|
+
ServiceRole?: string;
|
|
29
38
|
/**
|
|
30
39
|
* The single-sign on configuration of the Amazon DataZone domain.
|
|
31
40
|
*/
|
|
@@ -1,55 +1,54 @@
|
|
|
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
|
-
* AWS::ECR::RepositoryCreationTemplate
|
|
4
|
+
* Resource type definition for `AWS::ECR::RepositoryCreationTemplate`.
|
|
5
|
+
* The details of the repository creation template associated with the request.
|
|
5
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repositorycreationtemplate.html}
|
|
6
7
|
*/
|
|
7
8
|
export type ECRRepositoryCreationTemplateProperties = {
|
|
8
9
|
/**
|
|
9
|
-
* A list of enumerable Strings representing the repository creation scenarios that
|
|
10
|
+
* A list of enumerable Strings representing the repository creation scenarios that this template will apply towards. The two supported scenarios are PULL_THROUGH_CACHE and REPLICATION
|
|
10
11
|
*/
|
|
11
12
|
AppliedFor: AppliedForItem[];
|
|
12
13
|
/**
|
|
13
|
-
* The ARN of the role to be assumed by ECR.
|
|
14
|
+
* The ARN of the role to be assumed by Amazon ECR. Amazon ECR will assume your supplied role when the customRoleArn is specified. When this field isn't specified, Amazon ECR will use the service-linked role for the repository creation template.
|
|
14
15
|
* @maxLength `2048`
|
|
15
16
|
* @pattern `^arn:aws[-a-z0-9]*:iam::[0-9]{12}:role/[A-Za-z0-9+=,-.@_]*$`
|
|
16
17
|
*/
|
|
17
18
|
CustomRoleArn?: string;
|
|
18
19
|
/**
|
|
19
|
-
* The description
|
|
20
|
+
* The description associated with the repository creation template.
|
|
20
21
|
* @minLength `0`
|
|
21
22
|
* @maxLength `256`
|
|
22
23
|
*/
|
|
23
24
|
Description?: string;
|
|
24
25
|
/**
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
For more information, see https://docs.aws.amazon.com/AmazonECR/latest/userguide/encryption-at-rest.html
|
|
28
|
-
*/
|
|
26
|
+
* The encryption configuration associated with the repository creation template.
|
|
27
|
+
*/
|
|
29
28
|
EncryptionConfiguration?: EncryptionConfiguration;
|
|
30
29
|
/**
|
|
31
|
-
* The
|
|
30
|
+
* The tag mutability setting for the repository. If this parameter is omitted, the default setting of MUTABLE will be used which will allow image tags to be overwritten. If IMMUTABLE is specified, all image tags within the repository will be immutable which will prevent them from being overwritten.
|
|
32
31
|
*/
|
|
33
32
|
ImageTagMutability?: "MUTABLE" | "IMMUTABLE";
|
|
34
33
|
/**
|
|
35
|
-
* The
|
|
34
|
+
* The lifecycle policy to use for repositories created using the template.
|
|
36
35
|
* @minLength `100`
|
|
37
36
|
* @maxLength `30720`
|
|
38
37
|
*/
|
|
39
38
|
LifecyclePolicy?: string;
|
|
40
39
|
/**
|
|
41
|
-
* The prefix
|
|
40
|
+
* The repository namespace prefix associated with the repository creation template.
|
|
42
41
|
* @minLength `1`
|
|
43
42
|
* @maxLength `256`
|
|
44
43
|
* @pattern `^((?:[a-z0-9]+(?:[._-][a-z0-9]+)/*)*[a-z0-9]+(?:[._-][a-z0-9]+)/*?|ROOT)$`
|
|
45
44
|
*/
|
|
46
45
|
Prefix: string;
|
|
47
46
|
/**
|
|
48
|
-
*
|
|
47
|
+
* he repository policy to apply to repositories created using the template. A repository policy is a permissions policy associated with a repository to control access permissions.
|
|
49
48
|
*/
|
|
50
49
|
RepositoryPolicy?: string;
|
|
51
50
|
/**
|
|
52
|
-
*
|
|
51
|
+
* The metadata to apply to the repository to help you categorize and organize. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.
|
|
53
52
|
* @maxLength `50`
|
|
54
53
|
*/
|
|
55
54
|
ResourceTags?: Tag[];
|
|
@@ -59,13 +58,7 @@ export type ECRRepositoryCreationTemplateProperties = {
|
|
|
59
58
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repositorycreationtemplate.html#aws-resource-ecr-repositorycreationtemplate-return-values}
|
|
60
59
|
*/
|
|
61
60
|
export type ECRRepositoryCreationTemplateAttributes = {
|
|
62
|
-
/**
|
|
63
|
-
* Create timestamp of the template.
|
|
64
|
-
*/
|
|
65
61
|
CreatedAt: string;
|
|
66
|
-
/**
|
|
67
|
-
* Update timestamp of the template.
|
|
68
|
-
*/
|
|
69
62
|
UpdatedAt: string;
|
|
70
63
|
};
|
|
71
64
|
/**
|
|
@@ -76,18 +69,22 @@ export type ECRRepositoryCreationTemplateAttributes = {
|
|
|
76
69
|
export type AppliedForItem = "REPLICATION" | "PULL_THROUGH_CACHE";
|
|
77
70
|
/**
|
|
78
71
|
* Type definition for `AWS::ECR::RepositoryCreationTemplate.EncryptionConfiguration`.
|
|
79
|
-
* The encryption configuration for the repository. This determines how the contents of your repository are encrypted at rest.
|
|
80
|
-
|
|
81
|
-
For more information, see https://docs.aws.amazon.com/AmazonECR/latest/userguide/encryption-at-rest.html
|
|
72
|
+
* The encryption configuration for the repository. This determines how the contents of your repository are encrypted at rest.
|
|
73
|
+
By default, when no encryption configuration is set or the ``AES256`` encryption type is used, Amazon ECR uses server-side encryption with Amazon S3-managed encryption keys which encrypts your data at rest using an AES256 encryption algorithm. This does not require any action on your part.
|
|
74
|
+
For more control over the encryption of the contents of your repository, you can use server-side encryption with KMSlong key stored in KMSlong (KMS) to encrypt your images. For more information, see [Amazon ECR encryption at rest](https://docs.aws.amazon.com/AmazonECR/latest/userguide/encryption-at-rest.html) in the *Amazon Elastic Container Registry User Guide*.
|
|
82
75
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repositorycreationtemplate-encryptionconfiguration.html}
|
|
83
76
|
*/
|
|
84
77
|
export type EncryptionConfiguration = {
|
|
85
78
|
/**
|
|
86
|
-
|
|
87
|
-
|
|
79
|
+
* The encryption type to use.
|
|
80
|
+
If you use the ``KMS`` encryption type, the contents of the repository will be encrypted using server-side encryption with KMSlong key stored in KMS. When you use KMS to encrypt your data, you can either use the default AWS managed KMS key for Amazon ECR, or specify your own KMS key, which you already created.
|
|
81
|
+
If you use the ``KMS_DSSE`` encryption type, the contents of the repository will be encrypted with two layers of encryption using server-side encryption with the KMS Management Service key stored in KMS. Similar to the ``KMS`` encryption type, you can either use the default AWS managed KMS key for Amazon ECR, or specify your own KMS key, which you've already created.
|
|
82
|
+
If you use the ``AES256`` encryption type, Amazon ECR uses server-side encryption with Amazon S3-managed encryption keys which encrypts the images in the repository using an AES256 encryption algorithm.
|
|
83
|
+
For more information, see [Amazon ECR encryption at rest](https://docs.aws.amazon.com/AmazonECR/latest/userguide/encryption-at-rest.html) in the *Amazon Elastic Container Registry User Guide*.
|
|
84
|
+
*/
|
|
88
85
|
EncryptionType: EncryptionType;
|
|
89
86
|
/**
|
|
90
|
-
* If you use the KMS
|
|
87
|
+
* If you use the ``KMS`` encryption type, specify the KMS key to use for encryption. The alias, key ID, or full ARN of the KMS key can be specified. The key must exist in the same Region as the repository. If no key is specified, the default AWS managed KMS key for Amazon ECR will be used.
|
|
91
88
|
* @minLength `1`
|
|
92
89
|
* @maxLength `2048`
|
|
93
90
|
*/
|
|
@@ -101,25 +98,26 @@ export type EncryptionConfiguration = {
|
|
|
101
98
|
export type EncryptionType = "AES256" | "KMS" | "KMS_DSSE";
|
|
102
99
|
/**
|
|
103
100
|
* Type definition for `AWS::ECR::RepositoryCreationTemplate.Tag`.
|
|
104
|
-
*
|
|
101
|
+
* The metadata to apply to a resource to help you categorize and organize them. Each tag consists of a key and a value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.
|
|
105
102
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repositorycreationtemplate-tag.html}
|
|
106
103
|
*/
|
|
107
104
|
export type Tag = {
|
|
108
105
|
/**
|
|
109
|
-
*
|
|
106
|
+
* One part of a key-value pair that make up a tag. A ``key`` is a general label that acts like a category for more specific tag values.
|
|
110
107
|
* @minLength `1`
|
|
111
108
|
* @maxLength `128`
|
|
112
109
|
*/
|
|
113
110
|
Key: string;
|
|
114
111
|
/**
|
|
115
|
-
*
|
|
112
|
+
* A ``value`` acts as a descriptor within a tag category (key).
|
|
116
113
|
* @minLength `0`
|
|
117
114
|
* @maxLength `256`
|
|
118
115
|
*/
|
|
119
116
|
Value: string;
|
|
120
117
|
};
|
|
121
118
|
/**
|
|
122
|
-
* AWS::ECR::RepositoryCreationTemplate
|
|
119
|
+
* Resource type definition for `AWS::ECR::RepositoryCreationTemplate`.
|
|
120
|
+
* The details of the repository creation template associated with the request.
|
|
123
121
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repositorycreationtemplate.html}
|
|
124
122
|
*/
|
|
125
123
|
export declare class ECRRepositoryCreationTemplate extends $Resource<"AWS::ECR::RepositoryCreationTemplate", ECRRepositoryCreationTemplateProperties, ECRRepositoryCreationTemplateAttributes> {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* AWS::ECR::RepositoryCreationTemplate
|
|
3
|
+
* Resource type definition for `AWS::ECR::RepositoryCreationTemplate`.
|
|
4
|
+
* The details of the repository creation template associated with the request.
|
|
4
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repositorycreationtemplate.html}
|
|
5
6
|
*/
|
|
6
7
|
export class ECRRepositoryCreationTemplate extends $Resource {
|
|
@@ -1,14 +1,15 @@
|
|
|
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
|
-
*
|
|
4
|
+
* Resource type definition for `AWS::PCAConnectorAD::Connector`.
|
|
5
|
+
* Represents a Connector that connects AWS PrivateCA and your directory
|
|
5
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorad-connector.html}
|
|
6
7
|
*/
|
|
7
8
|
export type PCAConnectorADConnectorProperties = {
|
|
8
9
|
/**
|
|
9
10
|
* @minLength `5`
|
|
10
11
|
* @maxLength `200`
|
|
11
|
-
* @pattern `^arn:[\w-]+:acm-pca:[\w-]+:[0-9]+:certificate-authority
|
|
12
|
+
* @pattern `^arn:[\w-]+:acm-pca:[\w-]+:[0-9]+:certificate-authority\/[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}$`
|
|
12
13
|
*/
|
|
13
14
|
CertificateAuthorityArn: string;
|
|
14
15
|
/**
|
|
@@ -26,7 +27,7 @@ export type PCAConnectorADConnectorAttributes = {
|
|
|
26
27
|
/**
|
|
27
28
|
* @minLength `5`
|
|
28
29
|
* @maxLength `200`
|
|
29
|
-
* @pattern `^arn:[\w-]+:pca-connector-ad:[\w-]+:[0-9]+:connector
|
|
30
|
+
* @pattern `^arn:[\w-]+:pca-connector-ad:[\w-]+:[0-9]+:connector\/[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}$`
|
|
30
31
|
*/
|
|
31
32
|
ConnectorArn: string;
|
|
32
33
|
};
|
|
@@ -40,6 +41,7 @@ export type Tags = Record<string, string>;
|
|
|
40
41
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcaconnectorad-connector-vpcinformation.html}
|
|
41
42
|
*/
|
|
42
43
|
export type VpcInformation = {
|
|
44
|
+
IpAddressType?: "IPV4" | "DUALSTACK";
|
|
43
45
|
/**
|
|
44
46
|
* @minLength `1`
|
|
45
47
|
* @maxLength `5`
|
|
@@ -47,7 +49,8 @@ export type VpcInformation = {
|
|
|
47
49
|
SecurityGroupIds: string[];
|
|
48
50
|
};
|
|
49
51
|
/**
|
|
50
|
-
*
|
|
52
|
+
* Resource type definition for `AWS::PCAConnectorAD::Connector`.
|
|
53
|
+
* Represents a Connector that connects AWS PrivateCA and your directory
|
|
51
54
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorad-connector.html}
|
|
52
55
|
*/
|
|
53
56
|
export declare class PCAConnectorADConnector extends $Resource<"AWS::PCAConnectorAD::Connector", PCAConnectorADConnectorProperties, PCAConnectorADConnectorAttributes> {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Resource type definition for `AWS::PCAConnectorAD::Connector`.
|
|
4
|
+
* Represents a Connector that connects AWS PrivateCA and your directory
|
|
4
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorad-connector.html}
|
|
5
6
|
*/
|
|
6
7
|
export class PCAConnectorADConnector extends $Resource {
|
|
@@ -166,154 +166,6 @@ export type QuickSightTemplateAttributes = {
|
|
|
166
166
|
* @maxLength `20`
|
|
167
167
|
*/
|
|
168
168
|
Sheets: {
|
|
169
|
-
/**
|
|
170
|
-
* @minLength `0`
|
|
171
|
-
* @maxLength `10`
|
|
172
|
-
*/
|
|
173
|
-
Images: {
|
|
174
|
-
/**
|
|
175
|
-
* @minLength `0`
|
|
176
|
-
* @maxLength `10`
|
|
177
|
-
*/
|
|
178
|
-
Actions: {
|
|
179
|
-
/**
|
|
180
|
-
* @minLength `1`
|
|
181
|
-
* @maxLength `2`
|
|
182
|
-
*/
|
|
183
|
-
ActionOperations: {
|
|
184
|
-
NavigationOperation: {
|
|
185
|
-
LocalNavigationConfiguration: {
|
|
186
|
-
/**
|
|
187
|
-
* @minLength `1`
|
|
188
|
-
* @maxLength `512`
|
|
189
|
-
* @pattern `^[\w\-]+$`
|
|
190
|
-
*/
|
|
191
|
-
TargetSheetId: string;
|
|
192
|
-
};
|
|
193
|
-
};
|
|
194
|
-
SetParametersOperation: {
|
|
195
|
-
/**
|
|
196
|
-
* @minLength `1`
|
|
197
|
-
* @maxLength `200`
|
|
198
|
-
*/
|
|
199
|
-
ParameterValueConfigurations: {
|
|
200
|
-
/**
|
|
201
|
-
* @minLength `1`
|
|
202
|
-
* @maxLength `2048`
|
|
203
|
-
* @pattern `^[a-zA-Z0-9]+$`
|
|
204
|
-
*/
|
|
205
|
-
DestinationParameterName: string;
|
|
206
|
-
Value: {
|
|
207
|
-
CustomValuesConfiguration: {
|
|
208
|
-
CustomValues: {
|
|
209
|
-
/**
|
|
210
|
-
* @minLength `0`
|
|
211
|
-
* @maxLength `50000`
|
|
212
|
-
*/
|
|
213
|
-
DateTimeValues: string[];
|
|
214
|
-
/**
|
|
215
|
-
* @minLength `0`
|
|
216
|
-
* @maxLength `50000`
|
|
217
|
-
*/
|
|
218
|
-
DecimalValues: number[];
|
|
219
|
-
/**
|
|
220
|
-
* @minLength `0`
|
|
221
|
-
* @maxLength `50000`
|
|
222
|
-
*/
|
|
223
|
-
IntegerValues: number[];
|
|
224
|
-
/**
|
|
225
|
-
* @minLength `0`
|
|
226
|
-
* @maxLength `50000`
|
|
227
|
-
*/
|
|
228
|
-
StringValues: string[];
|
|
229
|
-
};
|
|
230
|
-
IncludeNullValue: boolean;
|
|
231
|
-
};
|
|
232
|
-
SelectAllValueOptions: SelectAllValueOptions;
|
|
233
|
-
SourceColumn: {
|
|
234
|
-
/**
|
|
235
|
-
* @minLength `1`
|
|
236
|
-
* @maxLength `127`
|
|
237
|
-
*/
|
|
238
|
-
ColumnName: string;
|
|
239
|
-
/**
|
|
240
|
-
* @minLength `1`
|
|
241
|
-
* @maxLength `2048`
|
|
242
|
-
*/
|
|
243
|
-
DataSetIdentifier: string;
|
|
244
|
-
};
|
|
245
|
-
/**
|
|
246
|
-
* @minLength `1`
|
|
247
|
-
* @maxLength `512`
|
|
248
|
-
*/
|
|
249
|
-
SourceField: string;
|
|
250
|
-
SourceParameterName: string;
|
|
251
|
-
};
|
|
252
|
-
}[];
|
|
253
|
-
};
|
|
254
|
-
URLOperation: {
|
|
255
|
-
URLTarget: URLTargetConfiguration;
|
|
256
|
-
/**
|
|
257
|
-
* @minLength `1`
|
|
258
|
-
* @maxLength `2048`
|
|
259
|
-
*/
|
|
260
|
-
URLTemplate: string;
|
|
261
|
-
};
|
|
262
|
-
}[];
|
|
263
|
-
/**
|
|
264
|
-
* @minLength `1`
|
|
265
|
-
* @maxLength `512`
|
|
266
|
-
* @pattern `^[\w\-]+$`
|
|
267
|
-
*/
|
|
268
|
-
CustomActionId: string;
|
|
269
|
-
/**
|
|
270
|
-
* @minLength `1`
|
|
271
|
-
* @maxLength `256`
|
|
272
|
-
*/
|
|
273
|
-
Name: string;
|
|
274
|
-
Status: WidgetStatus;
|
|
275
|
-
Trigger: ImageCustomActionTrigger;
|
|
276
|
-
}[];
|
|
277
|
-
/**
|
|
278
|
-
* @minLength `1`
|
|
279
|
-
* @maxLength `1024`
|
|
280
|
-
*/
|
|
281
|
-
ImageContentAltText: string;
|
|
282
|
-
Interactions: {
|
|
283
|
-
ImageMenuOption: {
|
|
284
|
-
AvailabilityStatus: any;
|
|
285
|
-
};
|
|
286
|
-
};
|
|
287
|
-
Scaling: {
|
|
288
|
-
ScalingType: SheetImageScalingType;
|
|
289
|
-
};
|
|
290
|
-
/**
|
|
291
|
-
* @minLength `1`
|
|
292
|
-
* @maxLength `512`
|
|
293
|
-
* @pattern `^[\w\-]+$`
|
|
294
|
-
*/
|
|
295
|
-
SheetImageId: string;
|
|
296
|
-
Source: {
|
|
297
|
-
SheetImageStaticFileSource: {
|
|
298
|
-
/**
|
|
299
|
-
* @minLength `1`
|
|
300
|
-
* @maxLength `512`
|
|
301
|
-
* @pattern `^[\w\-]+$`
|
|
302
|
-
*/
|
|
303
|
-
StaticFileId: string;
|
|
304
|
-
};
|
|
305
|
-
};
|
|
306
|
-
Tooltip: {
|
|
307
|
-
TooltipText: {
|
|
308
|
-
/**
|
|
309
|
-
* @minLength `1`
|
|
310
|
-
* @maxLength `1024`
|
|
311
|
-
*/
|
|
312
|
-
PlainText: string;
|
|
313
|
-
};
|
|
314
|
-
Visibility: any;
|
|
315
|
-
};
|
|
316
|
-
}[];
|
|
317
169
|
/**
|
|
318
170
|
* <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
|
|
319
171
|
console.</p>
|
|
@@ -1632,6 +1484,11 @@ export type CustomValuesConfiguration = {
|
|
|
1632
1484
|
CustomValues: CustomParameterValues;
|
|
1633
1485
|
IncludeNullValue?: boolean;
|
|
1634
1486
|
};
|
|
1487
|
+
/**
|
|
1488
|
+
* Type definition for `AWS::QuickSight::Template.DashboardBehavior`.
|
|
1489
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-dashboardbehavior.html}
|
|
1490
|
+
*/
|
|
1491
|
+
export type DashboardBehavior = "ENABLED" | "DISABLED";
|
|
1635
1492
|
/**
|
|
1636
1493
|
* Type definition for `AWS::QuickSight::Template.DataBarsOptions`.
|
|
1637
1494
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-databarsoptions.html}
|
|
@@ -3702,7 +3559,7 @@ export type ImageInteractionOptions = {
|
|
|
3702
3559
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-imagemenuoption.html}
|
|
3703
3560
|
*/
|
|
3704
3561
|
export type ImageMenuOption = {
|
|
3705
|
-
AvailabilityStatus?:
|
|
3562
|
+
AvailabilityStatus?: DashboardBehavior;
|
|
3706
3563
|
};
|
|
3707
3564
|
/**
|
|
3708
3565
|
* Type definition for `AWS::QuickSight::Template.InnerFilter`.
|
|
@@ -4456,7 +4313,7 @@ export type NumberFormatConfiguration = {
|
|
|
4456
4313
|
* Type definition for `AWS::QuickSight::Template.NumberScale`.
|
|
4457
4314
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-numberscale.html}
|
|
4458
4315
|
*/
|
|
4459
|
-
export type NumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS";
|
|
4316
|
+
export type NumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS" | "LAKHS" | "CRORES";
|
|
4460
4317
|
/**
|
|
4461
4318
|
* Type definition for `AWS::QuickSight::Template.NumericalAggregationFunction`.
|
|
4462
4319
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-numericalaggregationfunction.html}
|
|
@@ -6233,11 +6090,6 @@ export type ShapeConditionalFormat = {
|
|
|
6233
6090
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheet.html}
|
|
6234
6091
|
*/
|
|
6235
6092
|
export type Sheet = {
|
|
6236
|
-
/**
|
|
6237
|
-
* @minLength `0`
|
|
6238
|
-
* @maxLength `10`
|
|
6239
|
-
*/
|
|
6240
|
-
Images?: SheetImage[];
|
|
6241
6093
|
/**
|
|
6242
6094
|
* <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
|
|
6243
6095
|
console.</p>
|
|
@@ -59,14 +59,12 @@ export type AIAgentConfiguration = {
|
|
|
59
59
|
AnswerRecommendationAIAgentConfiguration: AnswerRecommendationAIAgentConfiguration;
|
|
60
60
|
} | {
|
|
61
61
|
SelfServiceAIAgentConfiguration: SelfServiceAIAgentConfiguration;
|
|
62
|
-
} | {
|
|
63
|
-
SessionSummarizationAIAgentConfiguration: SessionSummarizationAIAgentConfiguration;
|
|
64
62
|
};
|
|
65
63
|
/**
|
|
66
64
|
* Type definition for `AWS::Wisdom::AIAgent.AIAgentType`.
|
|
67
65
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-aiagenttype.html}
|
|
68
66
|
*/
|
|
69
|
-
export type AIAgentType = "MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE"
|
|
67
|
+
export type AIAgentType = "MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE";
|
|
70
68
|
/**
|
|
71
69
|
* Type definition for `AWS::Wisdom::AIAgent.AnswerRecommendationAIAgentConfiguration`.
|
|
72
70
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-answerrecommendationaiagentconfiguration.html}
|
|
@@ -178,20 +176,6 @@ export type SelfServiceAIAgentConfiguration = {
|
|
|
178
176
|
*/
|
|
179
177
|
SelfServicePreProcessingAIPromptId?: string;
|
|
180
178
|
};
|
|
181
|
-
/**
|
|
182
|
-
* Type definition for `AWS::Wisdom::AIAgent.SessionSummarizationAIAgentConfiguration`.
|
|
183
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-sessionsummarizationaiagentconfiguration.html}
|
|
184
|
-
*/
|
|
185
|
-
export type SessionSummarizationAIAgentConfiguration = {
|
|
186
|
-
/**
|
|
187
|
-
* @minLength `1`
|
|
188
|
-
*/
|
|
189
|
-
Locale?: string;
|
|
190
|
-
/**
|
|
191
|
-
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
|
192
|
-
*/
|
|
193
|
-
SessionSummarizationAIPromptId?: string;
|
|
194
|
-
};
|
|
195
179
|
/**
|
|
196
180
|
* Type definition for `AWS::Wisdom::AIAgent.TagCondition`.
|
|
197
181
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tagcondition.html}
|
|
@@ -72,7 +72,7 @@ export type AIPromptTemplateType = "TEXT";
|
|
|
72
72
|
* Type definition for `AWS::Wisdom::AIPrompt.AIPromptType`.
|
|
73
73
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiprompt-aiprompttype.html}
|
|
74
74
|
*/
|
|
75
|
-
export type AIPromptType = "ANSWER_GENERATION" | "INTENT_LABELING_GENERATION" | "QUERY_REFORMULATION" | "SELF_SERVICE_PRE_PROCESSING" | "SELF_SERVICE_ANSWER_GENERATION"
|
|
75
|
+
export type AIPromptType = "ANSWER_GENERATION" | "INTENT_LABELING_GENERATION" | "QUERY_REFORMULATION" | "SELF_SERVICE_PRE_PROCESSING" | "SELF_SERVICE_ANSWER_GENERATION";
|
|
76
76
|
/**
|
|
77
77
|
* Type definition for `AWS::Wisdom::AIPrompt.Tags`.
|
|
78
78
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiprompt-tags.html}
|