@propulsionworks/cloudformation 0.1.25 → 0.1.26
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/out/exports/resources.generated/aws-aps-scraper.d.ts +69 -1
- package/out/exports/resources.generated/aws-bedrock-datasource.d.ts +2 -2
- package/out/exports/resources.generated/aws-bedrock-guardrail.d.ts +23 -0
- package/out/exports/resources.generated/aws-bedrock-knowledgebase.d.ts +1 -1
- package/out/exports/resources.generated/aws-certificatemanager-certificate.d.ts +1 -1
- package/out/exports/resources.generated/aws-cloudformation-guardhook.d.ts +1 -1
- package/out/exports/resources.generated/aws-cloudformation-hookversion.d.ts +2 -2
- package/out/exports/resources.generated/aws-cloudformation-typeactivation.d.ts +3 -3
- package/out/exports/resources.generated/aws-cloudfront-publickey.d.ts +6 -0
- package/out/exports/resources.generated/aws-connect-hoursofoperation.d.ts +1 -1
- package/out/exports/resources.generated/aws-connect-predefinedattribute.d.ts +2 -2
- package/out/exports/resources.generated/aws-ec2-transitgatewayroutetableassociation.d.ts +2 -2
- package/out/exports/resources.generated/aws-ecs-service.d.ts +6 -3
- package/out/exports/resources.generated/aws-elasticloadbalancingv2-loadbalancer.d.ts +5 -0
- package/out/exports/resources.generated/aws-iotcoredeviceadvisor-suitedefinition.d.ts +1 -27
- package/out/exports/resources.generated/aws-iotsitewise-assetmodel.d.ts +7 -8
- package/out/exports/resources.generated/aws-iotsitewise-computationmodel.d.ts +16 -23
- package/out/exports/resources.generated/aws-iotsitewise-dataset.d.ts +6 -11
- package/out/exports/resources.generated/aws-omics-workflow.d.ts +12 -8
- package/out/exports/resources.generated/aws-omics-workflowversion.d.ts +76 -0
- package/out/exports/resources.generated/aws-opensearchserverless-index.d.ts +1 -1
- package/out/exports/resources.generated/aws-opensearchserverless-securityconfig.d.ts +21 -1
- package/out/exports/resources.generated/aws-quicksight-dashboard.d.ts +25 -0
- package/out/exports/resources.generated/aws-sagemaker-cluster.d.ts +53 -0
- package/out/exports/resources.generated/aws-smsvoice-configurationset.d.ts +211 -0
- package/out/exports/resources.generated/aws-smsvoice-optoutlist.d.ts +36 -0
- package/out/exports/resources.generated/aws-smsvoice-phonenumber.d.ts +136 -0
- package/out/exports/resources.generated/aws-smsvoice-pool.d.ts +126 -0
- package/out/exports/resources.generated/aws-smsvoice-protectconfiguration.d.ts +102 -0
- package/out/exports/resources.generated/aws-smsvoice-resourcepolicy.d.ts +24 -0
- package/out/exports/resources.generated/aws-smsvoice-senderid.d.ts +45 -0
- package/out/exports/resources.generated/aws-workspacesinstances-workspaceinstance.d.ts +101 -0
- package/package.json +1 -1
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Resource schema for AWS::IoTSiteWise::Dataset.
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-dataset.html}
|
|
5
5
|
*/
|
|
6
6
|
export type IoTSiteWiseDataset = ResourceDefinitionWithAttributes<"AWS::IoTSiteWise::Dataset", IoTSiteWiseDatasetProps, IoTSiteWiseDatasetAttribs>;
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* Resource schema for AWS::IoTSiteWise::Dataset.
|
|
9
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-dataset.html}
|
|
10
10
|
*/
|
|
11
11
|
export type IoTSiteWiseDatasetProps = {
|
|
@@ -25,7 +25,7 @@ export type IoTSiteWiseDatasetProps = {
|
|
|
25
25
|
*/
|
|
26
26
|
DatasetSource: DatasetSource;
|
|
27
27
|
/**
|
|
28
|
-
*
|
|
28
|
+
* An array of key-value pairs to apply to this resource.
|
|
29
29
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-dataset.html#cfn-iotsitewise-dataset-tags}
|
|
30
30
|
*/
|
|
31
31
|
Tags?: Tag[] | undefined;
|
|
@@ -35,9 +35,7 @@ export type IoTSiteWiseDatasetProps = {
|
|
|
35
35
|
*/
|
|
36
36
|
export type IoTSiteWiseDatasetAttribs = {
|
|
37
37
|
/**
|
|
38
|
-
* The ARN of the dataset
|
|
39
|
-
*
|
|
40
|
-
* `arn:${Partition}:iotsitewise:${Region}:${Account}:dataset/${DatasetId}`
|
|
38
|
+
* The ARN of the dataset.
|
|
41
39
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-dataset.html#cfn-iotsitewise-dataset-datasetarn}
|
|
42
40
|
*/
|
|
43
41
|
DatasetArn: string;
|
|
@@ -51,7 +49,6 @@ export type IoTSiteWiseDatasetAttribs = {
|
|
|
51
49
|
DatasetId: string;
|
|
52
50
|
};
|
|
53
51
|
/**
|
|
54
|
-
* The data source for the dataset.
|
|
55
52
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-dataset-datasetsource.html}
|
|
56
53
|
*/
|
|
57
54
|
export type DatasetSource = {
|
|
@@ -72,23 +69,21 @@ export type DatasetSource = {
|
|
|
72
69
|
SourceType: "KENDRA";
|
|
73
70
|
};
|
|
74
71
|
/**
|
|
75
|
-
* The source details for the Kendra dataset source.
|
|
76
72
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-dataset-kendrasourcedetail.html}
|
|
77
73
|
*/
|
|
78
74
|
export type KendraSourceDetail = {
|
|
79
75
|
/**
|
|
80
|
-
* The
|
|
76
|
+
* The knowledgeBaseArn details for the Kendra dataset source.
|
|
81
77
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-dataset-kendrasourcedetail.html#cfn-iotsitewise-dataset-kendrasourcedetail-knowledgebasearn}
|
|
82
78
|
*/
|
|
83
79
|
KnowledgeBaseArn: string;
|
|
84
80
|
/**
|
|
85
|
-
* The
|
|
81
|
+
* The roleARN details for the Kendra dataset source.
|
|
86
82
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-dataset-kendrasourcedetail.html#cfn-iotsitewise-dataset-kendrasourcedetail-rolearn}
|
|
87
83
|
*/
|
|
88
84
|
RoleArn: string;
|
|
89
85
|
};
|
|
90
86
|
/**
|
|
91
|
-
* The details of the dataset source associated with the dataset.
|
|
92
87
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-dataset-sourcedetail.html}
|
|
93
88
|
*/
|
|
94
89
|
export type SourceDetail = {
|
|
@@ -2,10 +2,12 @@ import type { ResourceDefinitionWithAttributes } from "../main.ts";
|
|
|
2
2
|
/**
|
|
3
3
|
* Creates a private workflow. Before you create a private workflow, you must create and configure these required resources:
|
|
4
4
|
*
|
|
5
|
-
* - *Workflow definition
|
|
6
|
-
*
|
|
7
|
-
* -
|
|
8
|
-
* - (Optional)
|
|
5
|
+
* - *Workflow definition file:* A workflow definition file written in WDL, Nextflow, or CWL. The workflow definition specifies the inputs and outputs for runs that use the workflow. It also includes specifications for the runs and run tasks for your workflow, including compute and memory requirements. The workflow definition file must be in `.zip` format. For more information, see [Workflow definition files](https://docs.aws.amazon.com/omics/latest/dev/workflow-definition-files.html) in AWS HealthOmics.
|
|
6
|
+
*
|
|
7
|
+
* - You can use Amazon Q CLI to build and validate your workflow definition files in WDL, Nextflow, and CWL. For more information, see [Example prompts for Amazon Q CLI](https://docs.aws.amazon.com/omics/latest/dev/getting-started.html#omics-q-prompts) and the [AWS HealthOmics Agentic generative AI tutorial](https://docs.aws.amazon.com/https://github.com/aws-samples/aws-healthomics-tutorials/tree/main/generative-ai) on GitHub.
|
|
8
|
+
* - *(Optional) Parameter template file:* A parameter template file written in JSON. Create the file to define the run parameters, or AWS HealthOmics generates the parameter template for you. For more information, see [Parameter template files for HealthOmics workflows](https://docs.aws.amazon.com/omics/latest/dev/parameter-templates.html) .
|
|
9
|
+
* - *ECR container images:* Create container images for the workflow in a private ECR repository, or synchronize images from a supported upstream registry with your Amazon ECR private repository.
|
|
10
|
+
* - *(Optional) Sentieon licenses:* Request a Sentieon license to use the Sentieon software in private workflows.
|
|
9
11
|
*
|
|
10
12
|
* For more information, see [Creating or updating a private workflow in AWS HealthOmics](https://docs.aws.amazon.com/omics/latest/dev/creating-private-workflows.html) in the *AWS HealthOmics User Guide* .
|
|
11
13
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html}
|
|
@@ -14,10 +16,12 @@ export type OmicsWorkflow = ResourceDefinitionWithAttributes<"AWS::Omics::Workfl
|
|
|
14
16
|
/**
|
|
15
17
|
* Creates a private workflow. Before you create a private workflow, you must create and configure these required resources:
|
|
16
18
|
*
|
|
17
|
-
* - *Workflow definition
|
|
18
|
-
*
|
|
19
|
-
* -
|
|
20
|
-
* - (Optional)
|
|
19
|
+
* - *Workflow definition file:* A workflow definition file written in WDL, Nextflow, or CWL. The workflow definition specifies the inputs and outputs for runs that use the workflow. It also includes specifications for the runs and run tasks for your workflow, including compute and memory requirements. The workflow definition file must be in `.zip` format. For more information, see [Workflow definition files](https://docs.aws.amazon.com/omics/latest/dev/workflow-definition-files.html) in AWS HealthOmics.
|
|
20
|
+
*
|
|
21
|
+
* - You can use Amazon Q CLI to build and validate your workflow definition files in WDL, Nextflow, and CWL. For more information, see [Example prompts for Amazon Q CLI](https://docs.aws.amazon.com/omics/latest/dev/getting-started.html#omics-q-prompts) and the [AWS HealthOmics Agentic generative AI tutorial](https://docs.aws.amazon.com/https://github.com/aws-samples/aws-healthomics-tutorials/tree/main/generative-ai) on GitHub.
|
|
22
|
+
* - *(Optional) Parameter template file:* A parameter template file written in JSON. Create the file to define the run parameters, or AWS HealthOmics generates the parameter template for you. For more information, see [Parameter template files for HealthOmics workflows](https://docs.aws.amazon.com/omics/latest/dev/parameter-templates.html) .
|
|
23
|
+
* - *ECR container images:* Create container images for the workflow in a private ECR repository, or synchronize images from a supported upstream registry with your Amazon ECR private repository.
|
|
24
|
+
* - *(Optional) Sentieon licenses:* Request a Sentieon license to use the Sentieon software in private workflows.
|
|
21
25
|
*
|
|
22
26
|
* For more information, see [Creating or updating a private workflow in AWS HealthOmics](https://docs.aws.amazon.com/omics/latest/dev/creating-private-workflows.html) in the *AWS HealthOmics User Guide* .
|
|
23
27
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflow.html}
|
|
@@ -29,6 +29,11 @@ export type OmicsWorkflowVersionProps = {
|
|
|
29
29
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-accelerators}
|
|
30
30
|
*/
|
|
31
31
|
Accelerators?: Accelerators | undefined;
|
|
32
|
+
/**
|
|
33
|
+
* Contains information about a source code repository that hosts the workflow definition files.
|
|
34
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-definitionrepository}
|
|
35
|
+
*/
|
|
36
|
+
DefinitionRepository?: DefinitionRepository | undefined;
|
|
32
37
|
/**
|
|
33
38
|
* @minLength 1
|
|
34
39
|
* @maxLength 256
|
|
@@ -59,6 +64,12 @@ export type OmicsWorkflowVersionProps = {
|
|
|
59
64
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-parametertemplate}
|
|
60
65
|
*/
|
|
61
66
|
ParameterTemplate?: Record<string, WorkflowParameter> | undefined;
|
|
67
|
+
/**
|
|
68
|
+
* Path to the primary workflow parameter template JSON file inside the repository
|
|
69
|
+
* @pattern ^[\S]+$
|
|
70
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-parametertemplatepath}
|
|
71
|
+
*/
|
|
72
|
+
ParameterTemplatePath?: string | undefined;
|
|
62
73
|
/**
|
|
63
74
|
* @min 0
|
|
64
75
|
* @max 100000
|
|
@@ -97,6 +108,25 @@ export type OmicsWorkflowVersionProps = {
|
|
|
97
108
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-workflowid}
|
|
98
109
|
*/
|
|
99
110
|
WorkflowId: string;
|
|
111
|
+
/**
|
|
112
|
+
* The markdown content for the workflow's README file. This provides documentation and usage information for users of the workflow.
|
|
113
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-readmemarkdown}
|
|
114
|
+
*/
|
|
115
|
+
readmeMarkdown?: string | undefined;
|
|
116
|
+
/**
|
|
117
|
+
* The path to the workflow README markdown file within the repository. This file provides documentation and usage information for the workflow. If not specified, the README.md file from the root directory of the repository will be used.
|
|
118
|
+
* @minLength 1
|
|
119
|
+
* @maxLength 128
|
|
120
|
+
* @pattern ^[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+$
|
|
121
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-readmepath}
|
|
122
|
+
*/
|
|
123
|
+
readmePath?: string | undefined;
|
|
124
|
+
/**
|
|
125
|
+
* The S3 URI of the README file for the workflow. This file provides documentation and usage information for the workflow. The S3 URI must begin with s3://USER-OWNED-BUCKET/. The requester must have access to the S3 bucket and object. The max README content length is 500 KiB.
|
|
126
|
+
* @pattern ^s3://([a-z0-9][a-z0-9-.]{1,61}[a-z0-9])/((.{1,1024}))$
|
|
127
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#cfn-omics-workflowversion-readmeuri}
|
|
128
|
+
*/
|
|
129
|
+
readmeUri?: string | undefined;
|
|
100
130
|
};
|
|
101
131
|
/**
|
|
102
132
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-omics-workflowversion.html#aws-resource-omics-workflowversion-return-values}
|
|
@@ -140,6 +170,52 @@ export type OmicsWorkflowVersionAttribs = {
|
|
|
140
170
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-accelerators.html}
|
|
141
171
|
*/
|
|
142
172
|
export type Accelerators = "GPU";
|
|
173
|
+
/**
|
|
174
|
+
* Contains information about a source code repository that hosts the workflow definition files.
|
|
175
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-definitionrepository.html}
|
|
176
|
+
*/
|
|
177
|
+
export type DefinitionRepository = {
|
|
178
|
+
/**
|
|
179
|
+
* The Amazon Resource Name (ARN) of the connection to the source code repository.
|
|
180
|
+
* @minLength 1
|
|
181
|
+
* @maxLength 256
|
|
182
|
+
* @pattern ^arn:aws(-[\\w]+)*:.+:.+:[0-9]{12}:.+$
|
|
183
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-definitionrepository.html#cfn-omics-workflowversion-definitionrepository-connectionarn}
|
|
184
|
+
*/
|
|
185
|
+
connectionArn?: string | undefined;
|
|
186
|
+
/**
|
|
187
|
+
* A list of file patterns to exclude when retrieving the workflow definition from the repository.
|
|
188
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-definitionrepository.html#cfn-omics-workflowversion-definitionrepository-excludefilepatterns}
|
|
189
|
+
*/
|
|
190
|
+
excludeFilePatterns?: string[] | undefined;
|
|
191
|
+
/**
|
|
192
|
+
* The full repository identifier, including the repository owner and name. For example, 'repository-owner/repository-name'.
|
|
193
|
+
* @pattern .+/.+
|
|
194
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-definitionrepository.html#cfn-omics-workflowversion-definitionrepository-fullrepositoryid}
|
|
195
|
+
*/
|
|
196
|
+
fullRepositoryId?: string | undefined;
|
|
197
|
+
/**
|
|
198
|
+
* The source reference for the repository, such as a branch name, tag, or commit ID.
|
|
199
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-definitionrepository.html#cfn-omics-workflowversion-definitionrepository-sourcereference}
|
|
200
|
+
*/
|
|
201
|
+
sourceReference?: SourceReference | undefined;
|
|
202
|
+
};
|
|
203
|
+
/**
|
|
204
|
+
* Contains information about the source reference in a code repository, such as a branch, tag, or commit.
|
|
205
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-sourcereference.html}
|
|
206
|
+
*/
|
|
207
|
+
export type SourceReference = {
|
|
208
|
+
/**
|
|
209
|
+
* The type of source reference, such as branch, tag, or commit.
|
|
210
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-sourcereference.html#cfn-omics-workflowversion-sourcereference-type}
|
|
211
|
+
*/
|
|
212
|
+
type?: "BRANCH" | "TAG" | "COMMIT" | undefined;
|
|
213
|
+
/**
|
|
214
|
+
* The value of the source reference, such as the branch name, tag name, or commit ID.
|
|
215
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-omics-workflowversion-sourcereference.html#cfn-omics-workflowversion-sourcereference-value}
|
|
216
|
+
*/
|
|
217
|
+
value?: string | undefined;
|
|
218
|
+
};
|
|
143
219
|
/**
|
|
144
220
|
* @minLength 1
|
|
145
221
|
* @maxLength 64
|
|
@@ -16,6 +16,10 @@ export type OpenSearchServerlessSecurityConfigProps = {
|
|
|
16
16
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-securityconfig.html#cfn-opensearchserverless-securityconfig-description}
|
|
17
17
|
*/
|
|
18
18
|
Description?: string | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-securityconfig.html#cfn-opensearchserverless-securityconfig-iamfederationoptions}
|
|
21
|
+
*/
|
|
22
|
+
IamFederationOptions?: IamFederationConfigOptions | undefined;
|
|
19
23
|
/**
|
|
20
24
|
* Describes IAM Identity Center options in the form of a key-value map.
|
|
21
25
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-securityconfig.html#cfn-opensearchserverless-securityconfig-iamidentitycenteroptions}
|
|
@@ -67,6 +71,22 @@ export type OpenSearchServerlessSecurityConfigAttribs = {
|
|
|
67
71
|
*/
|
|
68
72
|
Id: string;
|
|
69
73
|
};
|
|
74
|
+
/**
|
|
75
|
+
* Describe IAM federation options in form of key value map
|
|
76
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-securityconfig-iamfederationconfigoptions.html}
|
|
77
|
+
*/
|
|
78
|
+
export type IamFederationConfigOptions = {
|
|
79
|
+
/**
|
|
80
|
+
* Group attribute for this IAM federation integration
|
|
81
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-securityconfig-iamfederationconfigoptions.html#cfn-opensearchserverless-securityconfig-iamfederationconfigoptions-groupattribute}
|
|
82
|
+
*/
|
|
83
|
+
GroupAttribute?: string | undefined;
|
|
84
|
+
/**
|
|
85
|
+
* User attribute for this IAM federation integration
|
|
86
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-securityconfig-iamfederationconfigoptions.html#cfn-opensearchserverless-securityconfig-iamfederationconfigoptions-userattribute}
|
|
87
|
+
*/
|
|
88
|
+
UserAttribute?: string | undefined;
|
|
89
|
+
};
|
|
70
90
|
/**
|
|
71
91
|
* Describes IAM Identity Center options for an OpenSearch Serverless security configuration in the form of a key-value map.
|
|
72
92
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-securityconfig-iamidentitycenterconfigoptions.html}
|
|
@@ -135,5 +155,5 @@ export type SamlConfigOptions = {
|
|
|
135
155
|
* Config type for security config
|
|
136
156
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchserverless-securityconfig-securityconfigtype.html}
|
|
137
157
|
*/
|
|
138
|
-
export type SecurityConfigType = "saml" | "iamidentitycenter";
|
|
158
|
+
export type SecurityConfigType = "saml" | "iamidentitycenter" | "iamfederation";
|
|
139
159
|
//# sourceMappingURL=aws-opensearchserverless-securityconfig.d.ts.map
|
|
@@ -316,6 +316,14 @@ export type ArcThicknessOptions = "SMALL" | "MEDIUM" | "LARGE";
|
|
|
316
316
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-assetoptions.html}
|
|
317
317
|
*/
|
|
318
318
|
export type AssetOptions = {
|
|
319
|
+
/**
|
|
320
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-assetoptions.html#cfn-quicksight-dashboard-assetoptions-excludeddatasetarns}
|
|
321
|
+
*/
|
|
322
|
+
ExcludedDataSetArns?: string[] | undefined;
|
|
323
|
+
/**
|
|
324
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-assetoptions.html#cfn-quicksight-dashboard-assetoptions-qbusinessinsightsstatus}
|
|
325
|
+
*/
|
|
326
|
+
QBusinessInsightsStatus?: QBusinessInsightsStatus | undefined;
|
|
319
327
|
/**
|
|
320
328
|
* Determines the timezone for the analysis.
|
|
321
329
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-assetoptions.html#cfn-quicksight-dashboard-assetoptions-timezone}
|
|
@@ -2475,6 +2483,10 @@ export type DashboardPublishOptions = {
|
|
|
2475
2483
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-dashboardpublishoptions.html#cfn-quicksight-dashboard-dashboardpublishoptions-datapointtooltipoption}
|
|
2476
2484
|
*/
|
|
2477
2485
|
DataPointTooltipOption?: DataPointTooltipOption | undefined;
|
|
2486
|
+
/**
|
|
2487
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-dashboardpublishoptions.html#cfn-quicksight-dashboard-dashboardpublishoptions-dataqaenabledoption}
|
|
2488
|
+
*/
|
|
2489
|
+
DataQAEnabledOption?: DataQAEnabledOption | undefined;
|
|
2478
2490
|
/**
|
|
2479
2491
|
* Export to .csv option.
|
|
2480
2492
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-dashboardpublishoptions.html#cfn-quicksight-dashboard-dashboardpublishoptions-exporttocsvoption}
|
|
@@ -2917,6 +2929,15 @@ export type DataPointTooltipOption = {
|
|
|
2917
2929
|
*/
|
|
2918
2930
|
AvailabilityStatus?: DashboardBehavior | undefined;
|
|
2919
2931
|
};
|
|
2932
|
+
/**
|
|
2933
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-dataqaenabledoption.html}
|
|
2934
|
+
*/
|
|
2935
|
+
export type DataQAEnabledOption = {
|
|
2936
|
+
/**
|
|
2937
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-dataqaenabledoption.html#cfn-quicksight-dashboard-dataqaenabledoption-availabilitystatus}
|
|
2938
|
+
*/
|
|
2939
|
+
AvailabilityStatus?: DashboardBehavior | undefined;
|
|
2940
|
+
};
|
|
2920
2941
|
/**
|
|
2921
2942
|
* A data set.
|
|
2922
2943
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-datasetidentifierdeclaration.html}
|
|
@@ -10291,6 +10312,10 @@ export type ProgressBarOptions = {
|
|
|
10291
10312
|
*/
|
|
10292
10313
|
Visibility?: Visibility | undefined;
|
|
10293
10314
|
};
|
|
10315
|
+
/**
|
|
10316
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-qbusinessinsightsstatus.html}
|
|
10317
|
+
*/
|
|
10318
|
+
export type QBusinessInsightsStatus = "ENABLED" | "DISABLED";
|
|
10294
10319
|
/**
|
|
10295
10320
|
* The aggregated field well configuration of a `RadarChartVisual` .
|
|
10296
10321
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-radarchartaggregatedfieldwells.html}
|
|
@@ -9,6 +9,11 @@ export type SageMakerCluster = ResourceDefinitionWithAttributes<"AWS::SageMaker:
|
|
|
9
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-cluster.html}
|
|
10
10
|
*/
|
|
11
11
|
export type SageMakerClusterProps = {
|
|
12
|
+
/**
|
|
13
|
+
* Configuration for cluster auto-scaling
|
|
14
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-cluster.html#cfn-sagemaker-cluster-autoscaling}
|
|
15
|
+
*/
|
|
16
|
+
AutoScaling?: ClusterAutoScalingConfig | undefined;
|
|
12
17
|
/**
|
|
13
18
|
* The name of the SageMaker HyperPod cluster.
|
|
14
19
|
* @minLength 1
|
|
@@ -17,6 +22,14 @@ export type SageMakerClusterProps = {
|
|
|
17
22
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-cluster.html#cfn-sagemaker-cluster-clustername}
|
|
18
23
|
*/
|
|
19
24
|
ClusterName?: string | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* The cluster role for the autoscaler to assume.
|
|
27
|
+
* @minLength 20
|
|
28
|
+
* @maxLength 2048
|
|
29
|
+
* @pattern ^arn:aws[a-z\-]*:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+$
|
|
30
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-cluster.html#cfn-sagemaker-cluster-clusterrole}
|
|
31
|
+
*/
|
|
32
|
+
ClusterRole?: string | undefined;
|
|
20
33
|
/**
|
|
21
34
|
* The instance groups of the SageMaker HyperPod cluster. To delete an instance group, remove it from the array.
|
|
22
35
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-cluster.html#cfn-sagemaker-cluster-instancegroups}
|
|
@@ -116,11 +129,51 @@ export type CapacitySizeConfig = {
|
|
|
116
129
|
*/
|
|
117
130
|
Value: number;
|
|
118
131
|
};
|
|
132
|
+
/**
|
|
133
|
+
* Specifies the autoscaling configuration for a HyperPod cluster.
|
|
134
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterautoscalingconfig.html}
|
|
135
|
+
*/
|
|
136
|
+
export type ClusterAutoScalingConfig = {
|
|
137
|
+
/**
|
|
138
|
+
* The type of autoscaler to use. Currently supported value is `Karpenter` .
|
|
139
|
+
* @default "Karpenter"
|
|
140
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterautoscalingconfig.html#cfn-sagemaker-cluster-clusterautoscalingconfig-autoscalertype}
|
|
141
|
+
*/
|
|
142
|
+
AutoScalerType?: "Karpenter" | undefined;
|
|
143
|
+
/**
|
|
144
|
+
* Describes whether autoscaling is enabled or disabled for the cluster. Valid values are `Enable` and `Disable` .
|
|
145
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterautoscalingconfig.html#cfn-sagemaker-cluster-clusterautoscalingconfig-mode}
|
|
146
|
+
*/
|
|
147
|
+
Mode: "Enable" | "Disable";
|
|
148
|
+
};
|
|
119
149
|
/**
|
|
120
150
|
* Defines the configuration for attaching an additional Amazon Elastic Block Store (EBS) volume to each instance of the SageMaker HyperPod cluster instance group. To learn more, see [SageMaker HyperPod release notes: June 20, 2024](https://docs.aws.amazon.com/sagemaker/latest/dg/sagemaker-hyperpod-release-notes.html#sagemaker-hyperpod-release-notes-20240620) .
|
|
121
151
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterebsvolumeconfig.html}
|
|
122
152
|
*/
|
|
123
153
|
export type ClusterEbsVolumeConfig = {
|
|
154
|
+
/**
|
|
155
|
+
* Specifies whether the configuration is for the cluster's root or secondary Amazon EBS volume. You can specify two `ClusterEbsVolumeConfig` fields to configure both the root and secondary volumes. Set the value to `True` if you'd like to provide your own customer managed AWS KMS key to encrypt the root volume. When `True` :
|
|
156
|
+
*
|
|
157
|
+
* - The configuration is applied to the root volume.
|
|
158
|
+
* - You can't specify the `VolumeSizeInGB` field. The size of the root volume is determined for you.
|
|
159
|
+
* - You must specify a KMS key ID for `VolumeKmsKeyId` to encrypt the root volume with your own KMS key instead of an AWS owned KMS key.
|
|
160
|
+
*
|
|
161
|
+
* Otherwise, by default, the value is `False` , and the following applies:
|
|
162
|
+
*
|
|
163
|
+
* - The configuration is applied to the secondary volume, while the root volume is encrypted with an AWS owned key.
|
|
164
|
+
* - You must specify the `VolumeSizeInGB` field.
|
|
165
|
+
* - You can optionally specify the `VolumeKmsKeyId` to encrypt the secondary volume with your own KMS key instead of an AWS owned KMS key.
|
|
166
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterebsvolumeconfig.html#cfn-sagemaker-cluster-clusterebsvolumeconfig-rootvolume}
|
|
167
|
+
*/
|
|
168
|
+
RootVolume?: boolean | undefined;
|
|
169
|
+
/**
|
|
170
|
+
* The ID of a KMS key to encrypt the Amazon EBS volume.
|
|
171
|
+
* @minLength 0
|
|
172
|
+
* @maxLength 2048
|
|
173
|
+
* @pattern ^[a-zA-Z0-9:/_-]*$
|
|
174
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterebsvolumeconfig.html#cfn-sagemaker-cluster-clusterebsvolumeconfig-volumekmskeyid}
|
|
175
|
+
*/
|
|
176
|
+
VolumeKmsKeyId?: string | undefined;
|
|
124
177
|
/**
|
|
125
178
|
* The size in gigabytes (GB) of the additional EBS volume to be attached to the instances in the SageMaker HyperPod cluster instance group. The additional EBS volume is attached to each instance within the SageMaker HyperPod cluster instance group and mounted to `/opt/sagemaker` .
|
|
126
179
|
* @min 1
|
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Type definition for AWS::SMSVOICE::ConfigurationSet
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-configurationset.html}
|
|
5
|
+
*/
|
|
6
|
+
export type SMSVOICEConfigurationSet = ResourceDefinitionWithAttributes<"AWS::SMSVOICE::ConfigurationSet", SMSVOICEConfigurationSetProps, SMSVOICEConfigurationSetAttribs>;
|
|
7
|
+
/**
|
|
8
|
+
* Resource Type definition for AWS::SMSVOICE::ConfigurationSet
|
|
9
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-configurationset.html}
|
|
10
|
+
*/
|
|
11
|
+
export type SMSVOICEConfigurationSetProps = {
|
|
12
|
+
/**
|
|
13
|
+
* The name to use for the configuration set.
|
|
14
|
+
* @minLength 1
|
|
15
|
+
* @maxLength 64
|
|
16
|
+
* @pattern ^[A-Za-z0-9_-]+$
|
|
17
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-configurationset.html#cfn-smsvoice-configurationset-configurationsetname}
|
|
18
|
+
*/
|
|
19
|
+
ConfigurationSetName?: string | undefined;
|
|
20
|
+
/**
|
|
21
|
+
* The default sender ID to set for the ConfigurationSet.
|
|
22
|
+
* @pattern ^[A-Za-z0-9_-]+$
|
|
23
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-configurationset.html#cfn-smsvoice-configurationset-defaultsenderid}
|
|
24
|
+
*/
|
|
25
|
+
DefaultSenderId?: string | undefined;
|
|
26
|
+
/**
|
|
27
|
+
* An event destination is a location where you send message events.
|
|
28
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-configurationset.html#cfn-smsvoice-configurationset-eventdestinations}
|
|
29
|
+
*/
|
|
30
|
+
EventDestinations?: EventDestination[] | undefined;
|
|
31
|
+
/**
|
|
32
|
+
* Set to true to enable message feedback.
|
|
33
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-configurationset.html#cfn-smsvoice-configurationset-messagefeedbackenabled}
|
|
34
|
+
*/
|
|
35
|
+
MessageFeedbackEnabled?: boolean | undefined;
|
|
36
|
+
/**
|
|
37
|
+
* The unique identifier for the protect configuration to be associated to the configuration set.
|
|
38
|
+
* @minLength 1
|
|
39
|
+
* @maxLength 256
|
|
40
|
+
* @pattern ^[A-Za-z0-9_:/-]+$
|
|
41
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-configurationset.html#cfn-smsvoice-configurationset-protectconfigurationid}
|
|
42
|
+
*/
|
|
43
|
+
ProtectConfigurationId?: string | undefined;
|
|
44
|
+
/**
|
|
45
|
+
* An array of key-value pairs to apply to this resource.
|
|
46
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-configurationset.html#cfn-smsvoice-configurationset-tags}
|
|
47
|
+
*/
|
|
48
|
+
Tags?: Tag[] | undefined;
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-configurationset.html#aws-resource-smsvoice-configurationset-return-values}
|
|
52
|
+
*/
|
|
53
|
+
export type SMSVOICEConfigurationSetAttribs = {
|
|
54
|
+
/**
|
|
55
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-configurationset.html#cfn-smsvoice-configurationset-arn}
|
|
56
|
+
*/
|
|
57
|
+
Arn: string;
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-configurationset-cloudwatchlogsdestination.html}
|
|
61
|
+
*/
|
|
62
|
+
export type CloudWatchLogsDestination = {
|
|
63
|
+
/**
|
|
64
|
+
* The Amazon Resource Name (ARN) of an AWS Identity and Access Management role that is able to write event data to an Amazon CloudWatch destination.
|
|
65
|
+
* @pattern ^arn:\S+$
|
|
66
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-configurationset-cloudwatchlogsdestination.html#cfn-smsvoice-configurationset-cloudwatchlogsdestination-iamrolearn}
|
|
67
|
+
*/
|
|
68
|
+
IamRoleArn: string;
|
|
69
|
+
/**
|
|
70
|
+
* The name of the Amazon CloudWatch log group that you want to record events in.
|
|
71
|
+
* @pattern ^arn:\S+$
|
|
72
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-configurationset-cloudwatchlogsdestination.html#cfn-smsvoice-configurationset-cloudwatchlogsdestination-loggrouparn}
|
|
73
|
+
*/
|
|
74
|
+
LogGroupArn: string;
|
|
75
|
+
};
|
|
76
|
+
/**
|
|
77
|
+
* An event destination is a location where you send message events. The event options are Amazon CloudWatch, Amazon Data Firehose, or Amazon SNS. For example, when a message is delivered successfully, you can send information about that event to an event destination, or send notifications to endpoints that are subscribed to an Amazon SNS topic.
|
|
78
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-configurationset-eventdestination.html}
|
|
79
|
+
*/
|
|
80
|
+
export type EventDestination = {
|
|
81
|
+
/**
|
|
82
|
+
* An object that contains IamRoleArn and LogGroupArn associated with an Amazon CloudWatch event destination.
|
|
83
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-configurationset-eventdestination.html#cfn-smsvoice-configurationset-eventdestination-cloudwatchlogsdestination}
|
|
84
|
+
*/
|
|
85
|
+
CloudWatchLogsDestination: CloudWatchLogsDestination;
|
|
86
|
+
/**
|
|
87
|
+
* When set to true events will be logged. By default this is set to true
|
|
88
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-configurationset-eventdestination.html#cfn-smsvoice-configurationset-eventdestination-enabled}
|
|
89
|
+
*/
|
|
90
|
+
Enabled: boolean;
|
|
91
|
+
/**
|
|
92
|
+
* The name that identifies the event destination.
|
|
93
|
+
* @minLength 1
|
|
94
|
+
* @maxLength 64
|
|
95
|
+
* @pattern ^[A-Za-z0-9_-]+$
|
|
96
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-configurationset-eventdestination.html#cfn-smsvoice-configurationset-eventdestination-eventdestinationname}
|
|
97
|
+
*/
|
|
98
|
+
EventDestinationName: string;
|
|
99
|
+
/**
|
|
100
|
+
* An object that contains IamRoleArn and DeliveryStreamArn associated with an Amazon Kinesis Firehose event destination.
|
|
101
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-configurationset-eventdestination.html#cfn-smsvoice-configurationset-eventdestination-kinesisfirehosedestination}
|
|
102
|
+
*/
|
|
103
|
+
KinesisFirehoseDestination?: KinesisFirehoseDestination | undefined;
|
|
104
|
+
/**
|
|
105
|
+
* An array of event types that determine which events to log. If 'ALL' is used, then AWS End User Messaging SMS and Voice logs every event type.
|
|
106
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-configurationset-eventdestination.html#cfn-smsvoice-configurationset-eventdestination-matchingeventtypes}
|
|
107
|
+
*/
|
|
108
|
+
MatchingEventTypes: string[];
|
|
109
|
+
/**
|
|
110
|
+
* An object that contains SNS TopicArn event destination.
|
|
111
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-configurationset-eventdestination.html#cfn-smsvoice-configurationset-eventdestination-snsdestination}
|
|
112
|
+
*/
|
|
113
|
+
SnsDestination?: SnsDestination | undefined;
|
|
114
|
+
} | {
|
|
115
|
+
/**
|
|
116
|
+
* An object that contains IamRoleArn and LogGroupArn associated with an Amazon CloudWatch event destination.
|
|
117
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-configurationset-eventdestination.html#cfn-smsvoice-configurationset-eventdestination-cloudwatchlogsdestination}
|
|
118
|
+
*/
|
|
119
|
+
CloudWatchLogsDestination?: CloudWatchLogsDestination | undefined;
|
|
120
|
+
/**
|
|
121
|
+
* When set to true events will be logged. By default this is set to true
|
|
122
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-configurationset-eventdestination.html#cfn-smsvoice-configurationset-eventdestination-enabled}
|
|
123
|
+
*/
|
|
124
|
+
Enabled: boolean;
|
|
125
|
+
/**
|
|
126
|
+
* The name that identifies the event destination.
|
|
127
|
+
* @minLength 1
|
|
128
|
+
* @maxLength 64
|
|
129
|
+
* @pattern ^[A-Za-z0-9_-]+$
|
|
130
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-configurationset-eventdestination.html#cfn-smsvoice-configurationset-eventdestination-eventdestinationname}
|
|
131
|
+
*/
|
|
132
|
+
EventDestinationName: string;
|
|
133
|
+
/**
|
|
134
|
+
* An object that contains IamRoleArn and DeliveryStreamArn associated with an Amazon Kinesis Firehose event destination.
|
|
135
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-configurationset-eventdestination.html#cfn-smsvoice-configurationset-eventdestination-kinesisfirehosedestination}
|
|
136
|
+
*/
|
|
137
|
+
KinesisFirehoseDestination: KinesisFirehoseDestination;
|
|
138
|
+
/**
|
|
139
|
+
* An array of event types that determine which events to log. If 'ALL' is used, then AWS End User Messaging SMS and Voice logs every event type.
|
|
140
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-configurationset-eventdestination.html#cfn-smsvoice-configurationset-eventdestination-matchingeventtypes}
|
|
141
|
+
*/
|
|
142
|
+
MatchingEventTypes: string[];
|
|
143
|
+
/**
|
|
144
|
+
* An object that contains SNS TopicArn event destination.
|
|
145
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-configurationset-eventdestination.html#cfn-smsvoice-configurationset-eventdestination-snsdestination}
|
|
146
|
+
*/
|
|
147
|
+
SnsDestination?: SnsDestination | undefined;
|
|
148
|
+
} | {
|
|
149
|
+
/**
|
|
150
|
+
* An object that contains IamRoleArn and LogGroupArn associated with an Amazon CloudWatch event destination.
|
|
151
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-configurationset-eventdestination.html#cfn-smsvoice-configurationset-eventdestination-cloudwatchlogsdestination}
|
|
152
|
+
*/
|
|
153
|
+
CloudWatchLogsDestination?: CloudWatchLogsDestination | undefined;
|
|
154
|
+
/**
|
|
155
|
+
* When set to true events will be logged. By default this is set to true
|
|
156
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-configurationset-eventdestination.html#cfn-smsvoice-configurationset-eventdestination-enabled}
|
|
157
|
+
*/
|
|
158
|
+
Enabled: boolean;
|
|
159
|
+
/**
|
|
160
|
+
* The name that identifies the event destination.
|
|
161
|
+
* @minLength 1
|
|
162
|
+
* @maxLength 64
|
|
163
|
+
* @pattern ^[A-Za-z0-9_-]+$
|
|
164
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-configurationset-eventdestination.html#cfn-smsvoice-configurationset-eventdestination-eventdestinationname}
|
|
165
|
+
*/
|
|
166
|
+
EventDestinationName: string;
|
|
167
|
+
/**
|
|
168
|
+
* An object that contains IamRoleArn and DeliveryStreamArn associated with an Amazon Kinesis Firehose event destination.
|
|
169
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-configurationset-eventdestination.html#cfn-smsvoice-configurationset-eventdestination-kinesisfirehosedestination}
|
|
170
|
+
*/
|
|
171
|
+
KinesisFirehoseDestination?: KinesisFirehoseDestination | undefined;
|
|
172
|
+
/**
|
|
173
|
+
* An array of event types that determine which events to log. If 'ALL' is used, then AWS End User Messaging SMS and Voice logs every event type.
|
|
174
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-configurationset-eventdestination.html#cfn-smsvoice-configurationset-eventdestination-matchingeventtypes}
|
|
175
|
+
*/
|
|
176
|
+
MatchingEventTypes: string[];
|
|
177
|
+
/**
|
|
178
|
+
* An object that contains SNS TopicArn event destination.
|
|
179
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-configurationset-eventdestination.html#cfn-smsvoice-configurationset-eventdestination-snsdestination}
|
|
180
|
+
*/
|
|
181
|
+
SnsDestination: SnsDestination;
|
|
182
|
+
};
|
|
183
|
+
/**
|
|
184
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-configurationset-kinesisfirehosedestination.html}
|
|
185
|
+
*/
|
|
186
|
+
export type KinesisFirehoseDestination = {
|
|
187
|
+
/**
|
|
188
|
+
* The Amazon Resource Name (ARN) of the delivery stream.
|
|
189
|
+
* @pattern ^arn:\S+$
|
|
190
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-configurationset-kinesisfirehosedestination.html#cfn-smsvoice-configurationset-kinesisfirehosedestination-deliverystreamarn}
|
|
191
|
+
*/
|
|
192
|
+
DeliveryStreamArn: string;
|
|
193
|
+
/**
|
|
194
|
+
* The Amazon Resource Name (ARN) of an AWS Identity and Access Management role that is able to write event data to an Amazon CloudWatch destination.
|
|
195
|
+
* @pattern ^arn:\S+$
|
|
196
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-configurationset-kinesisfirehosedestination.html#cfn-smsvoice-configurationset-kinesisfirehosedestination-iamrolearn}
|
|
197
|
+
*/
|
|
198
|
+
IamRoleArn: string;
|
|
199
|
+
};
|
|
200
|
+
/**
|
|
201
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-configurationset-snsdestination.html}
|
|
202
|
+
*/
|
|
203
|
+
export type SnsDestination = {
|
|
204
|
+
/**
|
|
205
|
+
* The Amazon Resource Name (ARN) of the Amazon SNS topic that you want to publish events to.
|
|
206
|
+
* @pattern ^arn:\S+$
|
|
207
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-configurationset-snsdestination.html#cfn-smsvoice-configurationset-snsdestination-topicarn}
|
|
208
|
+
*/
|
|
209
|
+
TopicArn: string;
|
|
210
|
+
};
|
|
211
|
+
//# sourceMappingURL=aws-smsvoice-configurationset.d.ts.map
|