@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
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Type definition for AWS::SMSVOICE::OptOutList
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-optoutlist.html}
|
|
5
|
+
*/
|
|
6
|
+
export type SMSVOICEOptOutList = ResourceDefinitionWithAttributes<"AWS::SMSVOICE::OptOutList", SMSVOICEOptOutListProps, SMSVOICEOptOutListAttribs>;
|
|
7
|
+
/**
|
|
8
|
+
* Resource Type definition for AWS::SMSVOICE::OptOutList
|
|
9
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-optoutlist.html}
|
|
10
|
+
*/
|
|
11
|
+
export type SMSVOICEOptOutListProps = {
|
|
12
|
+
/**
|
|
13
|
+
* The name of the new OptOutList.
|
|
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-optoutlist.html#cfn-smsvoice-optoutlist-optoutlistname}
|
|
18
|
+
*/
|
|
19
|
+
OptOutListName?: string | undefined;
|
|
20
|
+
/**
|
|
21
|
+
* An array of key-value pairs to apply to this resource.
|
|
22
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-optoutlist.html#cfn-smsvoice-optoutlist-tags}
|
|
23
|
+
*/
|
|
24
|
+
Tags?: Tag[] | undefined;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-optoutlist.html#aws-resource-smsvoice-optoutlist-return-values}
|
|
28
|
+
*/
|
|
29
|
+
export type SMSVOICEOptOutListAttribs = {
|
|
30
|
+
/**
|
|
31
|
+
* The Amazon Resource Name (ARN) for the OptOutList.
|
|
32
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-optoutlist.html#cfn-smsvoice-optoutlist-arn}
|
|
33
|
+
*/
|
|
34
|
+
Arn: string;
|
|
35
|
+
};
|
|
36
|
+
//# sourceMappingURL=aws-smsvoice-optoutlist.d.ts.map
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Type definition for AWS::SMSVOICE::PhoneNumber
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-phonenumber.html}
|
|
5
|
+
*/
|
|
6
|
+
export type SMSVOICEPhoneNumber = ResourceDefinitionWithAttributes<"AWS::SMSVOICE::PhoneNumber", SMSVOICEPhoneNumberProps, SMSVOICEPhoneNumberAttribs>;
|
|
7
|
+
/**
|
|
8
|
+
* Resource Type definition for AWS::SMSVOICE::PhoneNumber
|
|
9
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-phonenumber.html}
|
|
10
|
+
*/
|
|
11
|
+
export type SMSVOICEPhoneNumberProps = {
|
|
12
|
+
/**
|
|
13
|
+
* When set to true the sender ID can't be deleted. By default this is set to false.
|
|
14
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-phonenumber.html#cfn-smsvoice-phonenumber-deletionprotectionenabled}
|
|
15
|
+
*/
|
|
16
|
+
DeletionProtectionEnabled?: boolean | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* The two-character code, in ISO 3166-1 alpha-2 format, for the country or region.
|
|
19
|
+
* @pattern ^[A-Z]{2}$
|
|
20
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-phonenumber.html#cfn-smsvoice-phonenumber-isocountrycode}
|
|
21
|
+
*/
|
|
22
|
+
IsoCountryCode: string;
|
|
23
|
+
/**
|
|
24
|
+
* A keyword is a word that you can search for on a particular phone number or pool. It is also a specific word or phrase that an end user can send to your number to elicit a response, such as an informational message or a special offer. When your number receives a message that begins with a keyword, AWS End User Messaging SMS and Voice responds with a customizable message. Keywords "HELP" and "STOP" are mandatory keywords
|
|
25
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-phonenumber.html#cfn-smsvoice-phonenumber-mandatorykeywords}
|
|
26
|
+
*/
|
|
27
|
+
MandatoryKeywords: {
|
|
28
|
+
HELP: MandatoryKeyword;
|
|
29
|
+
STOP: MandatoryKeyword;
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* Indicates if the phone number will be used for text messages, voice messages, or both.
|
|
33
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-phonenumber.html#cfn-smsvoice-phonenumber-numbercapabilities}
|
|
34
|
+
*/
|
|
35
|
+
NumberCapabilities: ("SMS" | "VOICE" | "MMS")[];
|
|
36
|
+
/**
|
|
37
|
+
* The type of phone number to request.
|
|
38
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-phonenumber.html#cfn-smsvoice-phonenumber-numbertype}
|
|
39
|
+
*/
|
|
40
|
+
NumberType: "LONG_CODE" | "TOLL_FREE" | "TEN_DLC" | "SIMULATOR";
|
|
41
|
+
/**
|
|
42
|
+
* The name of the OptOutList to associate with the phone number. You can use the OptOutListName or OptOutListArn.
|
|
43
|
+
* @minLength 1
|
|
44
|
+
* @maxLength 256
|
|
45
|
+
* @pattern ^[A-Za-z0-9_:/-]+$
|
|
46
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-phonenumber.html#cfn-smsvoice-phonenumber-optoutlistname}
|
|
47
|
+
*/
|
|
48
|
+
OptOutListName?: string | undefined;
|
|
49
|
+
/**
|
|
50
|
+
* A keyword is a word that you can search for on a particular phone number or pool. It is also a specific word or phrase that an end user can send to your number to elicit a response, such as an informational message or a special offer. When your number receives a message that begins with a keyword, AWS End User Messaging SMS and Voice responds with a customizable message.
|
|
51
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-phonenumber.html#cfn-smsvoice-phonenumber-optionalkeywords}
|
|
52
|
+
*/
|
|
53
|
+
OptionalKeywords?: OptionalKeyword[] | undefined;
|
|
54
|
+
/**
|
|
55
|
+
* By default this is set to false. When an end recipient sends a message that begins with HELP or STOP to one of your dedicated numbers, AWS End User Messaging SMS and Voice automatically replies with a customizable message and adds the end recipient to the OptOutList. When set to true you're responsible for responding to HELP and STOP requests. You're also responsible for tracking and honoring opt-out requests.
|
|
56
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-phonenumber.html#cfn-smsvoice-phonenumber-selfmanagedoptoutsenabled}
|
|
57
|
+
*/
|
|
58
|
+
SelfManagedOptOutsEnabled?: boolean | undefined;
|
|
59
|
+
/**
|
|
60
|
+
* An array of key-value pairs to apply to this resource.
|
|
61
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-phonenumber.html#cfn-smsvoice-phonenumber-tags}
|
|
62
|
+
*/
|
|
63
|
+
Tags?: Tag[] | undefined;
|
|
64
|
+
/**
|
|
65
|
+
* When you set up two-way SMS, you can receive incoming messages from your customers. When one of your customers sends a message to your phone number, the message body is sent to an Amazon SNS topic or Amazon Connect for processing.
|
|
66
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-phonenumber.html#cfn-smsvoice-phonenumber-twoway}
|
|
67
|
+
*/
|
|
68
|
+
TwoWay?: {
|
|
69
|
+
/**
|
|
70
|
+
* The Amazon Resource Name (ARN) of the two way channel.
|
|
71
|
+
* @pattern ^arn:\S+$
|
|
72
|
+
*/
|
|
73
|
+
ChannelArn?: string | undefined;
|
|
74
|
+
/**
|
|
75
|
+
* An optional IAM Role Arn for a service to assume, to be able to post inbound SMS messages.
|
|
76
|
+
* @pattern ^arn:\S+$
|
|
77
|
+
*/
|
|
78
|
+
ChannelRole?: string | undefined;
|
|
79
|
+
/**
|
|
80
|
+
* By default this is set to false. When set to true you can receive incoming text messages from your end recipients.
|
|
81
|
+
*/
|
|
82
|
+
Enabled: boolean;
|
|
83
|
+
} | undefined;
|
|
84
|
+
};
|
|
85
|
+
/**
|
|
86
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-phonenumber.html#aws-resource-smsvoice-phonenumber-return-values}
|
|
87
|
+
*/
|
|
88
|
+
export type SMSVOICEPhoneNumberAttribs = {
|
|
89
|
+
/**
|
|
90
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-phonenumber.html#cfn-smsvoice-phonenumber-arn}
|
|
91
|
+
*/
|
|
92
|
+
Arn: string;
|
|
93
|
+
/**
|
|
94
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-phonenumber.html#cfn-smsvoice-phonenumber-phonenumber}
|
|
95
|
+
*/
|
|
96
|
+
PhoneNumber: string;
|
|
97
|
+
/**
|
|
98
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-phonenumber.html#cfn-smsvoice-phonenumber-phonenumberid}
|
|
99
|
+
*/
|
|
100
|
+
PhoneNumberId: string;
|
|
101
|
+
};
|
|
102
|
+
/**
|
|
103
|
+
* A keyword is a word that you can search for on a particular phone number or pool. It is also a specific word or phrase that an end user can send to your number to elicit a response, such as an informational message or a special offer. When your number receives a message that begins with a keyword, AWS End User Messaging SMS and Voice responds with a customizable message. Keywords "HELP" and "STOP" are mandatory keywords
|
|
104
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-phonenumber-mandatorykeyword.html}
|
|
105
|
+
*/
|
|
106
|
+
export type MandatoryKeyword = {
|
|
107
|
+
/**
|
|
108
|
+
* @maxLength 1600
|
|
109
|
+
* @pattern ^(?!\s*$)[\s\S]+$
|
|
110
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-phonenumber-mandatorykeyword.html#cfn-smsvoice-phonenumber-mandatorykeyword-message}
|
|
111
|
+
*/
|
|
112
|
+
Message: string;
|
|
113
|
+
};
|
|
114
|
+
/**
|
|
115
|
+
* A keyword is a word that you can search for on a particular phone number or pool. It is also a specific word or phrase that an end user can send to your number to elicit a response, such as an informational message or a special offer. When your number receives a message that begins with a keyword, AWS End User Messaging SMS and Voice responds with a customizable message.
|
|
116
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-phonenumber-optionalkeyword.html}
|
|
117
|
+
*/
|
|
118
|
+
export type OptionalKeyword = {
|
|
119
|
+
/**
|
|
120
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-phonenumber-optionalkeyword.html#cfn-smsvoice-phonenumber-optionalkeyword-action}
|
|
121
|
+
*/
|
|
122
|
+
Action: "AUTOMATIC_RESPONSE" | "OPT_OUT" | "OPT_IN";
|
|
123
|
+
/**
|
|
124
|
+
* @maxLength 30
|
|
125
|
+
* @pattern ^(?!.*(?i)(stop|help))[ \S]+
|
|
126
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-phonenumber-optionalkeyword.html#cfn-smsvoice-phonenumber-optionalkeyword-keyword}
|
|
127
|
+
*/
|
|
128
|
+
Keyword: string;
|
|
129
|
+
/**
|
|
130
|
+
* @maxLength 1600
|
|
131
|
+
* @pattern ^(?!\s*$)[\s\S]+$
|
|
132
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-phonenumber-optionalkeyword.html#cfn-smsvoice-phonenumber-optionalkeyword-message}
|
|
133
|
+
*/
|
|
134
|
+
Message: string;
|
|
135
|
+
};
|
|
136
|
+
//# sourceMappingURL=aws-smsvoice-phonenumber.d.ts.map
|
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Type definition for AWS::SMSVOICE::Pool
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-pool.html}
|
|
5
|
+
*/
|
|
6
|
+
export type SMSVOICEPool = ResourceDefinitionWithAttributes<"AWS::SMSVOICE::Pool", SMSVOICEPoolProps, SMSVOICEPoolAttribs>;
|
|
7
|
+
/**
|
|
8
|
+
* Resource Type definition for AWS::SMSVOICE::Pool
|
|
9
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-pool.html}
|
|
10
|
+
*/
|
|
11
|
+
export type SMSVOICEPoolProps = {
|
|
12
|
+
/**
|
|
13
|
+
* When set to true the pool can't be deleted. By default this is set to false.
|
|
14
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-pool.html#cfn-smsvoice-pool-deletionprotectionenabled}
|
|
15
|
+
*/
|
|
16
|
+
DeletionProtectionEnabled?: boolean | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* A keyword is a word that you can search for on a particular phone number or pool. It is also a specific word or phrase that an end user can send to your number to elicit a response, such as an informational message or a special offer. When your number receives a message that begins with a keyword, AWS End User Messaging SMS and Voice responds with a customizable message. Keywords "HELP" and "STOP" are mandatory keywords
|
|
19
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-pool.html#cfn-smsvoice-pool-mandatorykeywords}
|
|
20
|
+
*/
|
|
21
|
+
MandatoryKeywords: {
|
|
22
|
+
HELP: MandatoryKeyword;
|
|
23
|
+
STOP: MandatoryKeyword;
|
|
24
|
+
};
|
|
25
|
+
/**
|
|
26
|
+
* The name of the OptOutList to associate with the pool. You can use the OptOutListName or OptOutListArn.
|
|
27
|
+
* @minLength 1
|
|
28
|
+
* @maxLength 256
|
|
29
|
+
* @pattern ^[A-Za-z0-9_:/-]+$
|
|
30
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-pool.html#cfn-smsvoice-pool-optoutlistname}
|
|
31
|
+
*/
|
|
32
|
+
OptOutListName?: string | undefined;
|
|
33
|
+
/**
|
|
34
|
+
* A keyword is a word that you can search for on a particular phone number or pool. It is also a specific word or phrase that an end user can send to your number to elicit a response, such as an informational message or a special offer. When your number receives a message that begins with a keyword, AWS End User Messaging SMS and Voice responds with a customizable message.
|
|
35
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-pool.html#cfn-smsvoice-pool-optionalkeywords}
|
|
36
|
+
*/
|
|
37
|
+
OptionalKeywords?: OptionalKeyword[] | undefined;
|
|
38
|
+
/**
|
|
39
|
+
* The origination identity to use such as a PhoneNumberId, PhoneNumberArn, SenderId or SenderIdArn and it's IsoCountryCode.
|
|
40
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-pool.html#cfn-smsvoice-pool-originationidentities}
|
|
41
|
+
*/
|
|
42
|
+
OriginationIdentities: string[];
|
|
43
|
+
/**
|
|
44
|
+
* By default this is set to false. When an end recipient sends a message that begins with HELP or STOP to one of your dedicated numbers, AWS End User Messaging SMS and Voice automatically replies with a customizable message and adds the end recipient to the OptOutList. When set to true you're responsible for responding to HELP and STOP requests. You're also responsible for tracking and honoring opt-out requests.
|
|
45
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-pool.html#cfn-smsvoice-pool-selfmanagedoptoutsenabled}
|
|
46
|
+
*/
|
|
47
|
+
SelfManagedOptOutsEnabled?: boolean | undefined;
|
|
48
|
+
/**
|
|
49
|
+
* Indicates whether shared routes are enabled for the pool.
|
|
50
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-pool.html#cfn-smsvoice-pool-sharedroutesenabled}
|
|
51
|
+
*/
|
|
52
|
+
SharedRoutesEnabled?: boolean | undefined;
|
|
53
|
+
/**
|
|
54
|
+
* An array of key-value pairs to apply to this resource.
|
|
55
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-pool.html#cfn-smsvoice-pool-tags}
|
|
56
|
+
*/
|
|
57
|
+
Tags?: Tag[] | undefined;
|
|
58
|
+
/**
|
|
59
|
+
* When you set up two-way SMS, you can receive incoming messages from your customers. When one of your customers sends a message to your phone number, the message body is sent to an Amazon SNS topic or Amazon Connect for processing.
|
|
60
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-pool.html#cfn-smsvoice-pool-twoway}
|
|
61
|
+
*/
|
|
62
|
+
TwoWay?: {
|
|
63
|
+
/**
|
|
64
|
+
* The Amazon Resource Name (ARN) of the two way channel.
|
|
65
|
+
* @pattern ^[ \S]+
|
|
66
|
+
*/
|
|
67
|
+
ChannelArn?: string | undefined;
|
|
68
|
+
/**
|
|
69
|
+
* An optional IAM Role Arn for a service to assume, to be able to post inbound SMS messages.
|
|
70
|
+
* @pattern ^arn:\S+$
|
|
71
|
+
*/
|
|
72
|
+
ChannelRole?: string | undefined;
|
|
73
|
+
/**
|
|
74
|
+
* By default this is set to false. When set to true you can receive incoming text messages from your end recipients.
|
|
75
|
+
*/
|
|
76
|
+
Enabled: boolean;
|
|
77
|
+
} | undefined;
|
|
78
|
+
};
|
|
79
|
+
/**
|
|
80
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-pool.html#aws-resource-smsvoice-pool-return-values}
|
|
81
|
+
*/
|
|
82
|
+
export type SMSVOICEPoolAttribs = {
|
|
83
|
+
/**
|
|
84
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-pool.html#cfn-smsvoice-pool-arn}
|
|
85
|
+
*/
|
|
86
|
+
Arn: string;
|
|
87
|
+
/**
|
|
88
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-pool.html#cfn-smsvoice-pool-poolid}
|
|
89
|
+
*/
|
|
90
|
+
PoolId: string;
|
|
91
|
+
};
|
|
92
|
+
/**
|
|
93
|
+
* A keyword is a word that you can search for on a particular phone number or pool. It is also a specific word or phrase that an end user can send to your number to elicit a response, such as an informational message or a special offer. When your number receives a message that begins with a keyword, AWS End User Messaging SMS and Voice responds with a customizable message. Keywords "HELP" and "STOP" are mandatory keywords
|
|
94
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-pool-mandatorykeyword.html}
|
|
95
|
+
*/
|
|
96
|
+
export type MandatoryKeyword = {
|
|
97
|
+
/**
|
|
98
|
+
* @maxLength 1600
|
|
99
|
+
* @pattern ^(?!\s*$)[\s\S]+$
|
|
100
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-pool-mandatorykeyword.html#cfn-smsvoice-pool-mandatorykeyword-message}
|
|
101
|
+
*/
|
|
102
|
+
Message: string;
|
|
103
|
+
};
|
|
104
|
+
/**
|
|
105
|
+
* A keyword is a word that you can search for on a particular phone number or pool. It is also a specific word or phrase that an end user can send to your number to elicit a response, such as an informational message or a special offer. When your number receives a message that begins with a keyword, AWS End User Messaging SMS and Voice responds with a customizable message.
|
|
106
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-pool-optionalkeyword.html}
|
|
107
|
+
*/
|
|
108
|
+
export type OptionalKeyword = {
|
|
109
|
+
/**
|
|
110
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-pool-optionalkeyword.html#cfn-smsvoice-pool-optionalkeyword-action}
|
|
111
|
+
*/
|
|
112
|
+
Action: "AUTOMATIC_RESPONSE" | "OPT_OUT" | "OPT_IN";
|
|
113
|
+
/**
|
|
114
|
+
* @maxLength 30
|
|
115
|
+
* @pattern ^(?!.*(?i)(stop|help))[ \S]+
|
|
116
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-pool-optionalkeyword.html#cfn-smsvoice-pool-optionalkeyword-keyword}
|
|
117
|
+
*/
|
|
118
|
+
Keyword: string;
|
|
119
|
+
/**
|
|
120
|
+
* @maxLength 1600
|
|
121
|
+
* @pattern ^(?!\s*$)[\s\S]+$
|
|
122
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-pool-optionalkeyword.html#cfn-smsvoice-pool-optionalkeyword-message}
|
|
123
|
+
*/
|
|
124
|
+
Message: string;
|
|
125
|
+
};
|
|
126
|
+
//# sourceMappingURL=aws-smsvoice-pool.d.ts.map
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Type definition for AWS::SMSVOICE::ProtectConfiguration
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-protectconfiguration.html}
|
|
5
|
+
*/
|
|
6
|
+
export type SMSVOICEProtectConfiguration = ResourceDefinitionWithAttributes<"AWS::SMSVOICE::ProtectConfiguration", SMSVOICEProtectConfigurationProps, SMSVOICEProtectConfigurationAttribs>;
|
|
7
|
+
/**
|
|
8
|
+
* Resource Type definition for AWS::SMSVOICE::ProtectConfiguration
|
|
9
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-protectconfiguration.html}
|
|
10
|
+
*/
|
|
11
|
+
export type SMSVOICEProtectConfigurationProps = {
|
|
12
|
+
/**
|
|
13
|
+
* An array of CountryRule containing the rules for the NumberCapability.
|
|
14
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-protectconfiguration.html#cfn-smsvoice-protectconfiguration-countryruleset}
|
|
15
|
+
*/
|
|
16
|
+
CountryRuleSet?: CountryRuleSet | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* When set to true deletion protection is enabled and protect configuration cannot be deleted. By default this is set to false.
|
|
19
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-protectconfiguration.html#cfn-smsvoice-protectconfiguration-deletionprotectionenabled}
|
|
20
|
+
*/
|
|
21
|
+
DeletionProtectionEnabled?: boolean | undefined;
|
|
22
|
+
/**
|
|
23
|
+
* An array of key-value pairs to apply to this resource.
|
|
24
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-protectconfiguration.html#cfn-smsvoice-protectconfiguration-tags}
|
|
25
|
+
*/
|
|
26
|
+
Tags?: Tag[] | undefined;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-protectconfiguration.html#aws-resource-smsvoice-protectconfiguration-return-values}
|
|
30
|
+
*/
|
|
31
|
+
export type SMSVOICEProtectConfigurationAttribs = {
|
|
32
|
+
/**
|
|
33
|
+
* The Amazon Resource Name (ARN) of the protect configuration.
|
|
34
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-protectconfiguration.html#cfn-smsvoice-protectconfiguration-arn}
|
|
35
|
+
*/
|
|
36
|
+
Arn: string;
|
|
37
|
+
/**
|
|
38
|
+
* The unique identifier for the protect configuration.
|
|
39
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-protectconfiguration.html#cfn-smsvoice-protectconfiguration-protectconfigurationid}
|
|
40
|
+
*/
|
|
41
|
+
ProtectConfigurationId: string;
|
|
42
|
+
};
|
|
43
|
+
/**
|
|
44
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-protectconfiguration-countryrule.html}
|
|
45
|
+
*/
|
|
46
|
+
export type CountryRule = {
|
|
47
|
+
/**
|
|
48
|
+
* The two-letter ISO country code
|
|
49
|
+
* @pattern ^[A-Z]{2}$
|
|
50
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-protectconfiguration-countryrule.html#cfn-smsvoice-protectconfiguration-countryrule-countrycode}
|
|
51
|
+
*/
|
|
52
|
+
CountryCode: string;
|
|
53
|
+
/**
|
|
54
|
+
* The types of protection that can be used.
|
|
55
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-protectconfiguration-countryrule.html#cfn-smsvoice-protectconfiguration-countryrule-protectstatus}
|
|
56
|
+
*/
|
|
57
|
+
ProtectStatus: "ALLOW" | "BLOCK" | "MONITOR" | "FILTER";
|
|
58
|
+
};
|
|
59
|
+
/**
|
|
60
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-protectconfiguration-countryruleset.html}
|
|
61
|
+
*/
|
|
62
|
+
export type CountryRuleSet = {
|
|
63
|
+
/**
|
|
64
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-protectconfiguration-countryruleset.html#cfn-smsvoice-protectconfiguration-countryruleset-mms}
|
|
65
|
+
*/
|
|
66
|
+
MMS?: CountryRule[] | undefined;
|
|
67
|
+
/**
|
|
68
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-protectconfiguration-countryruleset.html#cfn-smsvoice-protectconfiguration-countryruleset-sms}
|
|
69
|
+
*/
|
|
70
|
+
SMS: CountryRule[];
|
|
71
|
+
/**
|
|
72
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-protectconfiguration-countryruleset.html#cfn-smsvoice-protectconfiguration-countryruleset-voice}
|
|
73
|
+
*/
|
|
74
|
+
VOICE?: CountryRule[] | undefined;
|
|
75
|
+
} | {
|
|
76
|
+
/**
|
|
77
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-protectconfiguration-countryruleset.html#cfn-smsvoice-protectconfiguration-countryruleset-mms}
|
|
78
|
+
*/
|
|
79
|
+
MMS?: CountryRule[] | undefined;
|
|
80
|
+
/**
|
|
81
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-protectconfiguration-countryruleset.html#cfn-smsvoice-protectconfiguration-countryruleset-sms}
|
|
82
|
+
*/
|
|
83
|
+
SMS?: CountryRule[] | undefined;
|
|
84
|
+
/**
|
|
85
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-protectconfiguration-countryruleset.html#cfn-smsvoice-protectconfiguration-countryruleset-voice}
|
|
86
|
+
*/
|
|
87
|
+
VOICE: CountryRule[];
|
|
88
|
+
} | {
|
|
89
|
+
/**
|
|
90
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-protectconfiguration-countryruleset.html#cfn-smsvoice-protectconfiguration-countryruleset-mms}
|
|
91
|
+
*/
|
|
92
|
+
MMS: CountryRule[];
|
|
93
|
+
/**
|
|
94
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-protectconfiguration-countryruleset.html#cfn-smsvoice-protectconfiguration-countryruleset-sms}
|
|
95
|
+
*/
|
|
96
|
+
SMS?: CountryRule[] | undefined;
|
|
97
|
+
/**
|
|
98
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-smsvoice-protectconfiguration-countryruleset.html#cfn-smsvoice-protectconfiguration-countryruleset-voice}
|
|
99
|
+
*/
|
|
100
|
+
VOICE?: CountryRule[] | undefined;
|
|
101
|
+
};
|
|
102
|
+
//# sourceMappingURL=aws-smsvoice-protectconfiguration.d.ts.map
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import type { ResourceDefinition } from "../main.ts";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Type definition for AWS::SMSVOICE::ResourcePolicy
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-resourcepolicy.html}
|
|
5
|
+
*/
|
|
6
|
+
export type SMSVOICEResourcePolicy = ResourceDefinition<"AWS::SMSVOICE::ResourcePolicy", SMSVOICEResourcePolicyProps>;
|
|
7
|
+
/**
|
|
8
|
+
* Resource Type definition for AWS::SMSVOICE::ResourcePolicy
|
|
9
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-resourcepolicy.html}
|
|
10
|
+
*/
|
|
11
|
+
export type SMSVOICEResourcePolicyProps = {
|
|
12
|
+
/**
|
|
13
|
+
* The JSON formatted resource-based policy to attach.
|
|
14
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-resourcepolicy.html#cfn-smsvoice-resourcepolicy-policydocument}
|
|
15
|
+
*/
|
|
16
|
+
PolicyDocument: Record<string, unknown>;
|
|
17
|
+
/**
|
|
18
|
+
* The Amazon Resource Name (ARN) of the AWS End User Messaging SMS and Voice resource to attach the resource-based policy to.
|
|
19
|
+
* @pattern ^arn:\S+$
|
|
20
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-resourcepolicy.html#cfn-smsvoice-resourcepolicy-resourcearn}
|
|
21
|
+
*/
|
|
22
|
+
ResourceArn: string;
|
|
23
|
+
};
|
|
24
|
+
//# sourceMappingURL=aws-smsvoice-resourcepolicy.d.ts.map
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Type definition for AWS::SMSVOICE::SenderId
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-senderid.html}
|
|
5
|
+
*/
|
|
6
|
+
export type SMSVOICESenderId = ResourceDefinitionWithAttributes<"AWS::SMSVOICE::SenderId", SMSVOICESenderIdProps, SMSVOICESenderIdAttribs>;
|
|
7
|
+
/**
|
|
8
|
+
* Resource Type definition for AWS::SMSVOICE::SenderId
|
|
9
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-senderid.html}
|
|
10
|
+
*/
|
|
11
|
+
export type SMSVOICESenderIdProps = {
|
|
12
|
+
/**
|
|
13
|
+
* When set to true the sender ID can't be deleted. By default this is set to false.
|
|
14
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-senderid.html#cfn-smsvoice-senderid-deletionprotectionenabled}
|
|
15
|
+
*/
|
|
16
|
+
DeletionProtectionEnabled?: boolean | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* The two-character code, in ISO 3166-1 alpha-2 format, for the country or region.
|
|
19
|
+
* @pattern ^[A-Z]{2}$
|
|
20
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-senderid.html#cfn-smsvoice-senderid-isocountrycode}
|
|
21
|
+
*/
|
|
22
|
+
IsoCountryCode: string;
|
|
23
|
+
/**
|
|
24
|
+
* The sender ID string to request.
|
|
25
|
+
* @pattern ^[A-Z0-9_-]+$
|
|
26
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-senderid.html#cfn-smsvoice-senderid-senderid}
|
|
27
|
+
*/
|
|
28
|
+
SenderId: string;
|
|
29
|
+
/**
|
|
30
|
+
* An array of key-value pairs to apply to this resource.
|
|
31
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-senderid.html#cfn-smsvoice-senderid-tags}
|
|
32
|
+
*/
|
|
33
|
+
Tags?: Tag[] | undefined;
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-senderid.html#aws-resource-smsvoice-senderid-return-values}
|
|
37
|
+
*/
|
|
38
|
+
export type SMSVOICESenderIdAttribs = {
|
|
39
|
+
/**
|
|
40
|
+
* The Amazon Resource Name (ARN) associated with the SenderId.
|
|
41
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-smsvoice-senderid.html#cfn-smsvoice-senderid-arn}
|
|
42
|
+
*/
|
|
43
|
+
Arn: string;
|
|
44
|
+
};
|
|
45
|
+
//# sourceMappingURL=aws-smsvoice-senderid.d.ts.map
|