@propulsionworks/cloudformation 0.1.43 → 0.1.45
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-backup-backupplan.d.ts +46 -0
- package/out/exports/resources.generated/aws-backup-tieringconfiguration.d.ts +63 -0
- package/out/exports/resources.generated/aws-bedrockagentcore-gatewaytarget.d.ts +71 -1
- package/out/exports/resources.generated/aws-cleanrooms-analysistemplate.d.ts +1 -1
- package/out/exports/resources.generated/aws-cleanrooms-collaboration.d.ts +1 -1
- package/out/exports/resources.generated/aws-cloudfront-keyvaluestore.d.ts +5 -1
- package/out/exports/resources.generated/aws-connect-evaluationform.d.ts +45 -0
- package/out/exports/resources.generated/aws-datazone-environment.d.ts +15 -1
- package/out/exports/resources.generated/aws-ecs-capacityprovider.d.ts +5 -1
- package/out/exports/resources.generated/aws-emr-studio.d.ts +1 -1
- package/out/exports/resources.generated/aws-emr-studiosessionmapping.d.ts +1 -1
- package/out/exports/resources.generated/aws-emrcontainers-endpoint.d.ts +185 -0
- package/out/exports/resources.generated/aws-emrcontainers-securityconfiguration.d.ts +321 -0
- package/out/exports/resources.generated/aws-evs-environment.d.ts +1 -1
- package/out/exports/resources.generated/aws-gamelift-script.d.ts +6 -0
- package/out/exports/resources.generated/aws-grafana-workspace.d.ts +1 -1
- package/out/exports/resources.generated/aws-iot-logging.d.ts +31 -0
- package/out/exports/resources.generated/aws-iotsitewise-portal.d.ts +2 -2
- package/out/exports/resources.generated/aws-kafkaconnect-connector.d.ts +1 -1
- package/out/exports/resources.generated/aws-medialive-channel.d.ts +49 -1
- package/out/exports/resources.generated/aws-mpa-identitysource.d.ts +2 -2
- package/out/exports/resources.generated/aws-mwaaserverless-workflow.d.ts +134 -0
- package/out/exports/resources.generated/aws-opensearchserverless-collection.d.ts +26 -0
- package/out/exports/resources.generated/aws-organizations-policy.d.ts +1 -1
- package/out/exports/resources.generated/aws-qbusiness-application.d.ts +1 -1
- package/out/exports/resources.generated/aws-quicksight-actionconnector.d.ts +2 -0
- package/out/exports/resources.generated/aws-rds-dbinstance.d.ts +5 -1
- package/out/exports/resources.generated/aws-rolesanywhere-trustanchor.d.ts +2 -2
- package/out/exports/resources.generated/aws-rtbfabric-inboundexternallink.d.ts +4 -0
- package/out/exports/resources.generated/aws-sagemaker-domain.d.ts +1 -1
- package/out/exports/resources.generated/aws-sagemaker-userprofile.d.ts +6 -6
- package/out/exports/resources.generated/aws-sso-assignment.d.ts +3 -3
- package/out/exports/resources.generated/aws-sso-instanceaccesscontrolattributeconfiguration.d.ts +7 -7
- package/out/exports/resources.generated/aws-sso-permissionset.d.ts +3 -3
- package/out/exports/resources.generated/aws-transfer-webapp.d.ts +1 -1
- package/out/exports/resources.generated/aws-workspacesweb-portal.d.ts +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,321 @@
|
|
|
1
|
+
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Schema of AWS::EMRContainers::SecurityConfiguration Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-securityconfiguration.html}
|
|
5
|
+
*/
|
|
6
|
+
export type EMRContainersSecurityConfiguration = ResourceDefinitionWithAttributes<"AWS::EMRContainers::SecurityConfiguration", EMRContainersSecurityConfigurationProps, EMRContainersSecurityConfigurationAttribs>;
|
|
7
|
+
/**
|
|
8
|
+
* Resource Schema of AWS::EMRContainers::SecurityConfiguration Type
|
|
9
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-securityconfiguration.html}
|
|
10
|
+
*/
|
|
11
|
+
export type EMRContainersSecurityConfigurationProps = {
|
|
12
|
+
/**
|
|
13
|
+
* Container provider information.
|
|
14
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-securityconfiguration.html#cfn-emrcontainers-securityconfiguration-containerprovider}
|
|
15
|
+
*/
|
|
16
|
+
ContainerProvider?: ContainerProvider | undefined;
|
|
17
|
+
/**
|
|
18
|
+
* The name of the security configuration.
|
|
19
|
+
* @minLength 1
|
|
20
|
+
* @maxLength 64
|
|
21
|
+
* @pattern ^[a-zA-Z0-9\-_]+$
|
|
22
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-securityconfiguration.html#cfn-emrcontainers-securityconfiguration-name}
|
|
23
|
+
*/
|
|
24
|
+
Name?: string | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* Security configuration data containing encryption and authorization settings.
|
|
27
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-securityconfiguration.html#cfn-emrcontainers-securityconfiguration-securityconfigurationdata}
|
|
28
|
+
*/
|
|
29
|
+
SecurityConfigurationData: SecurityConfigurationData;
|
|
30
|
+
/**
|
|
31
|
+
* An array of key-value pairs to apply to this security configuration.
|
|
32
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-securityconfiguration.html#cfn-emrcontainers-securityconfiguration-tags}
|
|
33
|
+
*/
|
|
34
|
+
Tags?: Tag[] | undefined;
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-securityconfiguration.html#aws-resource-emrcontainers-securityconfiguration-return-values}
|
|
38
|
+
*/
|
|
39
|
+
export type EMRContainersSecurityConfigurationAttribs = {
|
|
40
|
+
/**
|
|
41
|
+
* The ARN of the security configuration.
|
|
42
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-securityconfiguration.html#cfn-emrcontainers-securityconfiguration-arn}
|
|
43
|
+
*/
|
|
44
|
+
Arn: string;
|
|
45
|
+
/**
|
|
46
|
+
* The ID of the security configuration.
|
|
47
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-securityconfiguration.html#cfn-emrcontainers-securityconfiguration-id}
|
|
48
|
+
*/
|
|
49
|
+
Id: string;
|
|
50
|
+
};
|
|
51
|
+
/**
|
|
52
|
+
* At-rest encryption configuration.
|
|
53
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-atrestencryptionconfiguration.html}
|
|
54
|
+
*/
|
|
55
|
+
export type AtRestEncryptionConfiguration = {
|
|
56
|
+
/**
|
|
57
|
+
* Local disk encryption configuration.
|
|
58
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-atrestencryptionconfiguration.html#cfn-emrcontainers-securityconfiguration-atrestencryptionconfiguration-localdiskencryptionconfiguration}
|
|
59
|
+
*/
|
|
60
|
+
LocalDiskEncryptionConfiguration?: LocalDiskEncryptionConfiguration | undefined;
|
|
61
|
+
/**
|
|
62
|
+
* S3 encryption configuration.
|
|
63
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-atrestencryptionconfiguration.html#cfn-emrcontainers-securityconfiguration-atrestencryptionconfiguration-s3encryptionconfiguration}
|
|
64
|
+
*/
|
|
65
|
+
S3EncryptionConfiguration?: S3EncryptionConfiguration | undefined;
|
|
66
|
+
};
|
|
67
|
+
/**
|
|
68
|
+
* Authentication configuration for the security configuration.
|
|
69
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-authenticationconfiguration.html}
|
|
70
|
+
*/
|
|
71
|
+
export type AuthenticationConfiguration = {
|
|
72
|
+
/**
|
|
73
|
+
* IAM configuration.
|
|
74
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-authenticationconfiguration.html#cfn-emrcontainers-securityconfiguration-authenticationconfiguration-iamconfiguration}
|
|
75
|
+
*/
|
|
76
|
+
IAMConfiguration?: IAMConfiguration | undefined;
|
|
77
|
+
/**
|
|
78
|
+
* Identity Center configuration.
|
|
79
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-authenticationconfiguration.html#cfn-emrcontainers-securityconfiguration-authenticationconfiguration-identitycenterconfiguration}
|
|
80
|
+
*/
|
|
81
|
+
IdentityCenterConfiguration?: IdentityCenterConfiguration | undefined;
|
|
82
|
+
};
|
|
83
|
+
/**
|
|
84
|
+
* Authorization configuration for the security configuration.
|
|
85
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-authorizationconfiguration.html}
|
|
86
|
+
*/
|
|
87
|
+
export type AuthorizationConfiguration = {
|
|
88
|
+
/**
|
|
89
|
+
* Lake Formation configuration.
|
|
90
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-authorizationconfiguration.html#cfn-emrcontainers-securityconfiguration-authorizationconfiguration-lakeformationconfiguration}
|
|
91
|
+
*/
|
|
92
|
+
LakeFormationConfiguration?: LakeFormationConfiguration | undefined;
|
|
93
|
+
};
|
|
94
|
+
/**
|
|
95
|
+
* Container information.
|
|
96
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-containerinfo.html}
|
|
97
|
+
*/
|
|
98
|
+
export type ContainerInfo = {
|
|
99
|
+
/**
|
|
100
|
+
* EKS information.
|
|
101
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-containerinfo.html#cfn-emrcontainers-securityconfiguration-containerinfo-eksinfo}
|
|
102
|
+
*/
|
|
103
|
+
EksInfo?: EksInfo | undefined;
|
|
104
|
+
};
|
|
105
|
+
/**
|
|
106
|
+
* Container provider information.
|
|
107
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-containerprovider.html}
|
|
108
|
+
*/
|
|
109
|
+
export type ContainerProvider = {
|
|
110
|
+
/**
|
|
111
|
+
* The container provider ID.
|
|
112
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-containerprovider.html#cfn-emrcontainers-securityconfiguration-containerprovider-id}
|
|
113
|
+
*/
|
|
114
|
+
Id: string;
|
|
115
|
+
/**
|
|
116
|
+
* Container information.
|
|
117
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-containerprovider.html#cfn-emrcontainers-securityconfiguration-containerprovider-info}
|
|
118
|
+
*/
|
|
119
|
+
Info?: ContainerInfo | undefined;
|
|
120
|
+
/**
|
|
121
|
+
* The container provider type.
|
|
122
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-containerprovider.html#cfn-emrcontainers-securityconfiguration-containerprovider-type}
|
|
123
|
+
*/
|
|
124
|
+
Type: "EKS";
|
|
125
|
+
};
|
|
126
|
+
/**
|
|
127
|
+
* EKS information.
|
|
128
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-eksinfo.html}
|
|
129
|
+
*/
|
|
130
|
+
export type EksInfo = {
|
|
131
|
+
/**
|
|
132
|
+
* The EKS namespace.
|
|
133
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-eksinfo.html#cfn-emrcontainers-securityconfiguration-eksinfo-namespace}
|
|
134
|
+
*/
|
|
135
|
+
Namespace?: string | undefined;
|
|
136
|
+
};
|
|
137
|
+
/**
|
|
138
|
+
* Encryption configuration for the security configuration.
|
|
139
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-encryptionconfiguration.html}
|
|
140
|
+
*/
|
|
141
|
+
export type EncryptionConfiguration = {
|
|
142
|
+
/**
|
|
143
|
+
* At-rest encryption configuration.
|
|
144
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-encryptionconfiguration.html#cfn-emrcontainers-securityconfiguration-encryptionconfiguration-atrestencryptionconfiguration}
|
|
145
|
+
*/
|
|
146
|
+
AtRestEncryptionConfiguration?: AtRestEncryptionConfiguration | undefined;
|
|
147
|
+
/**
|
|
148
|
+
* In-transit encryption configuration.
|
|
149
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-encryptionconfiguration.html#cfn-emrcontainers-securityconfiguration-encryptionconfiguration-intransitencryptionconfiguration}
|
|
150
|
+
*/
|
|
151
|
+
InTransitEncryptionConfiguration?: InTransitEncryptionConfiguration | undefined;
|
|
152
|
+
};
|
|
153
|
+
/**
|
|
154
|
+
* IAM configuration.
|
|
155
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-iamconfiguration.html}
|
|
156
|
+
*/
|
|
157
|
+
export type IAMConfiguration = {
|
|
158
|
+
/**
|
|
159
|
+
* The system role ARN.
|
|
160
|
+
* @pattern ^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):iam::\d{12}:role/.+$
|
|
161
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-iamconfiguration.html#cfn-emrcontainers-securityconfiguration-iamconfiguration-systemrole}
|
|
162
|
+
*/
|
|
163
|
+
SystemRole?: string | undefined;
|
|
164
|
+
};
|
|
165
|
+
/**
|
|
166
|
+
* Identity Center configuration.
|
|
167
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-identitycenterconfiguration.html}
|
|
168
|
+
*/
|
|
169
|
+
export type IdentityCenterConfiguration = {
|
|
170
|
+
/**
|
|
171
|
+
* Whether to enable Identity Center integration.
|
|
172
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-identitycenterconfiguration.html#cfn-emrcontainers-securityconfiguration-identitycenterconfiguration-enableidentitycenter}
|
|
173
|
+
*/
|
|
174
|
+
EnableIdentityCenter?: boolean | undefined;
|
|
175
|
+
/**
|
|
176
|
+
* Whether Identity Center application assignment is required.
|
|
177
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-identitycenterconfiguration.html#cfn-emrcontainers-securityconfiguration-identitycenterconfiguration-identitycenterapplicationassignmentrequired}
|
|
178
|
+
*/
|
|
179
|
+
IdentityCenterApplicationAssignmentRequired?: boolean | undefined;
|
|
180
|
+
/**
|
|
181
|
+
* The ARN of the Identity Center instance.
|
|
182
|
+
* @pattern ^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):sso:::instance/(sso)?ins-[a-zA-Z0-9-.]{16}$
|
|
183
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-identitycenterconfiguration.html#cfn-emrcontainers-securityconfiguration-identitycenterconfiguration-identitycenterinstancearn}
|
|
184
|
+
*/
|
|
185
|
+
IdentityCenterInstanceARN?: string | undefined;
|
|
186
|
+
};
|
|
187
|
+
/**
|
|
188
|
+
* In-transit encryption configuration.
|
|
189
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-intransitencryptionconfiguration.html}
|
|
190
|
+
*/
|
|
191
|
+
export type InTransitEncryptionConfiguration = {
|
|
192
|
+
/**
|
|
193
|
+
* TLS certificate configuration for in-transit encryption.
|
|
194
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-intransitencryptionconfiguration.html#cfn-emrcontainers-securityconfiguration-intransitencryptionconfiguration-tlscertificateconfiguration}
|
|
195
|
+
*/
|
|
196
|
+
TLSCertificateConfiguration?: TLSCertificateConfiguration | undefined;
|
|
197
|
+
};
|
|
198
|
+
/**
|
|
199
|
+
* Lake Formation configuration.
|
|
200
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-lakeformationconfiguration.html}
|
|
201
|
+
*/
|
|
202
|
+
export type LakeFormationConfiguration = {
|
|
203
|
+
/**
|
|
204
|
+
* The session tag to authorize Lake Formation access.
|
|
205
|
+
* @minLength 1
|
|
206
|
+
* @maxLength 256
|
|
207
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-lakeformationconfiguration.html#cfn-emrcontainers-securityconfiguration-lakeformationconfiguration-authorizedsessiontagvalue}
|
|
208
|
+
*/
|
|
209
|
+
AuthorizedSessionTagValue?: string | undefined;
|
|
210
|
+
/**
|
|
211
|
+
* Whether query access control is enabled.
|
|
212
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-lakeformationconfiguration.html#cfn-emrcontainers-securityconfiguration-lakeformationconfiguration-queryaccesscontrolenabled}
|
|
213
|
+
*/
|
|
214
|
+
QueryAccessControlEnabled?: boolean | undefined;
|
|
215
|
+
/**
|
|
216
|
+
* The ARN of the query engine role.
|
|
217
|
+
* @pattern ^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):iam::\d{12}:role/.+$
|
|
218
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-lakeformationconfiguration.html#cfn-emrcontainers-securityconfiguration-lakeformationconfiguration-queryenginerolearn}
|
|
219
|
+
*/
|
|
220
|
+
QueryEngineRoleArn?: string | undefined;
|
|
221
|
+
/**
|
|
222
|
+
* Secure namespace information for Lake Formation.
|
|
223
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-lakeformationconfiguration.html#cfn-emrcontainers-securityconfiguration-lakeformationconfiguration-securenamespaceinfo}
|
|
224
|
+
*/
|
|
225
|
+
SecureNamespaceInfo?: SecureNamespaceInfo | undefined;
|
|
226
|
+
};
|
|
227
|
+
/**
|
|
228
|
+
* Local disk encryption configuration.
|
|
229
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-localdiskencryptionconfiguration.html}
|
|
230
|
+
*/
|
|
231
|
+
export type LocalDiskEncryptionConfiguration = {
|
|
232
|
+
/**
|
|
233
|
+
* The AWS KMS key ID.
|
|
234
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-localdiskencryptionconfiguration.html#cfn-emrcontainers-securityconfiguration-localdiskencryptionconfiguration-awskmskeyid}
|
|
235
|
+
*/
|
|
236
|
+
AwsKmsKeyId?: string | undefined;
|
|
237
|
+
/**
|
|
238
|
+
* The encryption key provider type.
|
|
239
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-localdiskencryptionconfiguration.html#cfn-emrcontainers-securityconfiguration-localdiskencryptionconfiguration-encryptionkeyprovidertype}
|
|
240
|
+
*/
|
|
241
|
+
EncryptionKeyProviderType?: "AwsKms" | undefined;
|
|
242
|
+
};
|
|
243
|
+
/**
|
|
244
|
+
* S3 encryption configuration.
|
|
245
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-s3encryptionconfiguration.html}
|
|
246
|
+
*/
|
|
247
|
+
export type S3EncryptionConfiguration = {
|
|
248
|
+
/**
|
|
249
|
+
* The S3 encryption option.
|
|
250
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-s3encryptionconfiguration.html#cfn-emrcontainers-securityconfiguration-s3encryptionconfiguration-encryptionoption}
|
|
251
|
+
*/
|
|
252
|
+
EncryptionOption?: "SSE-S3" | "SSE-KMS" | "CSE-KMS" | undefined;
|
|
253
|
+
/**
|
|
254
|
+
* The KMS key ID for encryption.
|
|
255
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-s3encryptionconfiguration.html#cfn-emrcontainers-securityconfiguration-s3encryptionconfiguration-kmskeyid}
|
|
256
|
+
*/
|
|
257
|
+
KMSKeyId?: string | undefined;
|
|
258
|
+
};
|
|
259
|
+
/**
|
|
260
|
+
* Secure namespace information for Lake Formation.
|
|
261
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-securenamespaceinfo.html}
|
|
262
|
+
*/
|
|
263
|
+
export type SecureNamespaceInfo = {
|
|
264
|
+
/**
|
|
265
|
+
* The ID of the cluster.
|
|
266
|
+
* @minLength 1
|
|
267
|
+
* @maxLength 100
|
|
268
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-securenamespaceinfo.html#cfn-emrcontainers-securityconfiguration-securenamespaceinfo-clusterid}
|
|
269
|
+
*/
|
|
270
|
+
ClusterId?: string | undefined;
|
|
271
|
+
/**
|
|
272
|
+
* The namespace.
|
|
273
|
+
* @minLength 1
|
|
274
|
+
* @maxLength 63
|
|
275
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-securenamespaceinfo.html#cfn-emrcontainers-securityconfiguration-securenamespaceinfo-namespace}
|
|
276
|
+
*/
|
|
277
|
+
Namespace?: string | undefined;
|
|
278
|
+
};
|
|
279
|
+
/**
|
|
280
|
+
* Security configuration data containing encryption and authorization settings.
|
|
281
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-securityconfigurationdata.html}
|
|
282
|
+
*/
|
|
283
|
+
export type SecurityConfigurationData = {
|
|
284
|
+
/**
|
|
285
|
+
* Authentication configuration for the security configuration.
|
|
286
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-securityconfigurationdata.html#cfn-emrcontainers-securityconfiguration-securityconfigurationdata-authenticationconfiguration}
|
|
287
|
+
*/
|
|
288
|
+
AuthenticationConfiguration?: AuthenticationConfiguration | undefined;
|
|
289
|
+
/**
|
|
290
|
+
* Authorization configuration for the security configuration.
|
|
291
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-securityconfigurationdata.html#cfn-emrcontainers-securityconfiguration-securityconfigurationdata-authorizationconfiguration}
|
|
292
|
+
*/
|
|
293
|
+
AuthorizationConfiguration?: AuthorizationConfiguration | undefined;
|
|
294
|
+
/**
|
|
295
|
+
* Encryption configuration for the security configuration.
|
|
296
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-securityconfigurationdata.html#cfn-emrcontainers-securityconfiguration-securityconfigurationdata-encryptionconfiguration}
|
|
297
|
+
*/
|
|
298
|
+
EncryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
299
|
+
};
|
|
300
|
+
/**
|
|
301
|
+
* TLS certificate configuration for in-transit encryption.
|
|
302
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-tlscertificateconfiguration.html}
|
|
303
|
+
*/
|
|
304
|
+
export type TLSCertificateConfiguration = {
|
|
305
|
+
/**
|
|
306
|
+
* The certificate provider type.
|
|
307
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-tlscertificateconfiguration.html#cfn-emrcontainers-securityconfiguration-tlscertificateconfiguration-certificateprovidertype}
|
|
308
|
+
*/
|
|
309
|
+
CertificateProviderType?: "PEM" | undefined;
|
|
310
|
+
/**
|
|
311
|
+
* The ARN of the secret containing the private key.
|
|
312
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-tlscertificateconfiguration.html#cfn-emrcontainers-securityconfiguration-tlscertificateconfiguration-privatekeysecretarn}
|
|
313
|
+
*/
|
|
314
|
+
PrivateKeySecretArn?: string | undefined;
|
|
315
|
+
/**
|
|
316
|
+
* The ARN of the secret containing the public key.
|
|
317
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-tlscertificateconfiguration.html#cfn-emrcontainers-securityconfiguration-tlscertificateconfiguration-publickeysecretarn}
|
|
318
|
+
*/
|
|
319
|
+
PublicKeySecretArn?: string | undefined;
|
|
320
|
+
};
|
|
321
|
+
//# sourceMappingURL=aws-emrcontainers-securityconfiguration.d.ts.map
|
|
@@ -133,7 +133,7 @@ export type EVSEnvironmentProps = {
|
|
|
133
133
|
* The VCF version of the environment.
|
|
134
134
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evs-environment.html#cfn-evs-environment-vcfversion}
|
|
135
135
|
*/
|
|
136
|
-
VcfVersion: "VCF-5.2.1";
|
|
136
|
+
VcfVersion: "VCF-5.2.1" | "VCF-5.2.2";
|
|
137
137
|
/**
|
|
138
138
|
* The VPC associated with the environment.
|
|
139
139
|
* @minLength 12
|
|
@@ -16,6 +16,12 @@ export type GameLiftScriptProps = {
|
|
|
16
16
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-name}
|
|
17
17
|
*/
|
|
18
18
|
Name?: string | undefined;
|
|
19
|
+
/**
|
|
20
|
+
* The Node.js version used for execution of the Realtime script.
|
|
21
|
+
* @pattern ^\d+\.[x0-9]+$
|
|
22
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-nodejsversion}
|
|
23
|
+
*/
|
|
24
|
+
NodeJsVersion?: string | undefined;
|
|
19
25
|
/**
|
|
20
26
|
* The location of the Amazon S3 bucket where a zipped file containing your Realtime scripts is stored. The storage location must specify the Amazon S3 bucket name, the zip file name (the "key"), and a role ARN that allows Amazon GameLift Servers to access the Amazon S3 storage location. The S3 bucket must be in the same Region where you want to create a new script. By default, Amazon GameLift Servers uploads the latest version of the zip file; if you have S3 object versioning turned on, you can use the `ObjectVersion` parameter to specify an earlier version.
|
|
21
27
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-script.html#cfn-gamelift-script-storagelocation}
|
|
@@ -15,7 +15,7 @@ export type GrafanaWorkspaceProps = {
|
|
|
15
15
|
*/
|
|
16
16
|
AccountAccessType: AccountAccessType;
|
|
17
17
|
/**
|
|
18
|
-
* Specifies whether this workspace uses SAML 2.0,
|
|
18
|
+
* Specifies whether this workspace uses SAML 2.0, SSOlong , or both to authenticate users for using the Grafana console within a workspace. For more information, see [User authentication in Amazon Managed Grafana](https://docs.aws.amazon.com/grafana/latest/userguide/authentication-in-AMG.html) .
|
|
19
19
|
*
|
|
20
20
|
* *Allowed Values* : `AWS_SSO | SAML`
|
|
21
21
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-grafana-workspace.html#cfn-grafana-workspace-authenticationproviders}
|
|
@@ -32,6 +32,11 @@ export type IoTLoggingProps = {
|
|
|
32
32
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-logging.html#cfn-iot-logging-defaultloglevel}
|
|
33
33
|
*/
|
|
34
34
|
DefaultLogLevel: "ERROR" | "WARN" | "INFO" | "DEBUG" | "DISABLED";
|
|
35
|
+
/**
|
|
36
|
+
* Configurations for event-based logging that specifies which event types to log and their logging settings. Overrides account-level logging for the specified event
|
|
37
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iot-logging.html#cfn-iot-logging-eventconfigurations}
|
|
38
|
+
*/
|
|
39
|
+
EventConfigurations?: EventConfiguration[] | undefined;
|
|
35
40
|
/**
|
|
36
41
|
* The role ARN used for the log.
|
|
37
42
|
* @minLength 20
|
|
@@ -40,4 +45,30 @@ export type IoTLoggingProps = {
|
|
|
40
45
|
*/
|
|
41
46
|
RoleArn: string;
|
|
42
47
|
};
|
|
48
|
+
/**
|
|
49
|
+
* Configuration for event-based logging that specifies which event types to log and their logging settings. Used for account-level logging overrides.
|
|
50
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-logging-eventconfiguration.html}
|
|
51
|
+
*/
|
|
52
|
+
export type EventConfiguration = {
|
|
53
|
+
/**
|
|
54
|
+
* The type of event to log. These include event types like Connect, Publish, and Disconnect.
|
|
55
|
+
* @minLength 1
|
|
56
|
+
* @maxLength 512
|
|
57
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-logging-eventconfiguration.html#cfn-iot-logging-eventconfiguration-eventtype}
|
|
58
|
+
*/
|
|
59
|
+
EventType: string;
|
|
60
|
+
/**
|
|
61
|
+
* CloudWatch Log Group for event-based logging. Specifies where log events should be sent. The log destination for event-based logging overrides default Log Group for the specified event type and applies to all resources associated with that event.
|
|
62
|
+
* @minLength 1
|
|
63
|
+
* @maxLength 512
|
|
64
|
+
* @pattern ^(?!aws/)[a-zA-Z0-9_\-/.#]+$
|
|
65
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-logging-eventconfiguration.html#cfn-iot-logging-eventconfiguration-logdestination}
|
|
66
|
+
*/
|
|
67
|
+
LogDestination?: string | undefined;
|
|
68
|
+
/**
|
|
69
|
+
* The logging level for the specified event type. Determines the verbosity of log messages generated for this event type.
|
|
70
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-logging-eventconfiguration.html#cfn-iot-logging-eventconfiguration-loglevel}
|
|
71
|
+
*/
|
|
72
|
+
LogLevel?: "ERROR" | "WARN" | "INFO" | "DEBUG" | "DISABLED" | undefined;
|
|
73
|
+
};
|
|
43
74
|
//# sourceMappingURL=aws-iot-logging.d.ts.map
|
|
@@ -41,7 +41,7 @@ export type IoTSiteWisePortalProps = {
|
|
|
41
41
|
/**
|
|
42
42
|
* The service to use to authenticate users to the portal. Choose from the following options:
|
|
43
43
|
*
|
|
44
|
-
* - `SSO` – The portal uses
|
|
44
|
+
* - `SSO` – The portal uses SSOlong to authenticate users and manage user permissions. Before you can create a portal that uses IAM Identity Center, you must enable IAM Identity Center. For more information, see [Enabling IAM Identity Center](https://docs.aws.amazon.com/iot-sitewise/latest/userguide/monitor-get-started.html#mon-gs-sso) in the *AWS IoT SiteWise User Guide* . This option is only available in AWS Regions other than the China Regions.
|
|
45
45
|
* - `IAM` – The portal uses AWS Identity and Access Management to authenticate users and manage user permissions.
|
|
46
46
|
*
|
|
47
47
|
* You can't change this value after you create a portal.
|
|
@@ -98,7 +98,7 @@ export type IoTSiteWisePortalAttribs = {
|
|
|
98
98
|
*/
|
|
99
99
|
PortalArn: string;
|
|
100
100
|
/**
|
|
101
|
-
* The
|
|
101
|
+
* The SSO application generated client ID (used with SSO APIs).
|
|
102
102
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-portal.html#cfn-iotsitewise-portal-portalclientid}
|
|
103
103
|
*/
|
|
104
104
|
PortalClientId: string;
|
|
@@ -296,7 +296,7 @@ export type ProvisionedCapacity = {
|
|
|
296
296
|
* The number of microcontroller units (MCUs) allocated to each connector worker. The valid values are 1,2,4,8.
|
|
297
297
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kafkaconnect-connector-provisionedcapacity.html#cfn-kafkaconnect-connector-provisionedcapacity-mcucount}
|
|
298
298
|
*/
|
|
299
|
-
McuCount
|
|
299
|
+
McuCount: 1 | 2 | 4 | 8;
|
|
300
300
|
/**
|
|
301
301
|
* The number of workers that are allocated to the connector.
|
|
302
302
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kafkaconnect-connector-provisionedcapacity.html#cfn-kafkaconnect-connector-provisionedcapacity-workercount}
|
|
@@ -55,6 +55,10 @@ export type MediaLiveChannelProps = {
|
|
|
55
55
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-inputspecification}
|
|
56
56
|
*/
|
|
57
57
|
InputSpecification?: InputSpecification | undefined;
|
|
58
|
+
/**
|
|
59
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-linkedchannelsettings}
|
|
60
|
+
*/
|
|
61
|
+
LinkedChannelSettings?: LinkedChannelSettings | undefined;
|
|
58
62
|
/**
|
|
59
63
|
* The verbosity for logging activity for this channel. Charges for logging (which are generated through Amazon CloudWatch Logging) are higher for higher verbosities.
|
|
60
64
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channel.html#cfn-medialive-channel-loglevel}
|
|
@@ -2012,6 +2016,19 @@ export type Fmp4HlsSettings = {
|
|
|
2012
2016
|
*/
|
|
2013
2017
|
TimedMetadataBehavior?: string | undefined;
|
|
2014
2018
|
};
|
|
2019
|
+
/**
|
|
2020
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-followerchannelsettings.html}
|
|
2021
|
+
*/
|
|
2022
|
+
export type FollowerChannelSettings = {
|
|
2023
|
+
/**
|
|
2024
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-followerchannelsettings.html#cfn-medialive-channel-followerchannelsettings-linkedchanneltype}
|
|
2025
|
+
*/
|
|
2026
|
+
LinkedChannelType?: string | undefined;
|
|
2027
|
+
/**
|
|
2028
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-followerchannelsettings.html#cfn-medialive-channel-followerchannelsettings-primarychannelarn}
|
|
2029
|
+
*/
|
|
2030
|
+
PrimaryChannelArn?: string | undefined;
|
|
2031
|
+
};
|
|
2015
2032
|
/**
|
|
2016
2033
|
* Settings to configure the destination of a Frame Capture output.
|
|
2017
2034
|
*
|
|
@@ -3417,6 +3434,19 @@ export type KeyProviderSettings = {
|
|
|
3417
3434
|
*/
|
|
3418
3435
|
StaticKeySettings?: StaticKeySettings | undefined;
|
|
3419
3436
|
};
|
|
3437
|
+
/**
|
|
3438
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-linkedchannelsettings.html}
|
|
3439
|
+
*/
|
|
3440
|
+
export type LinkedChannelSettings = {
|
|
3441
|
+
/**
|
|
3442
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-linkedchannelsettings.html#cfn-medialive-channel-linkedchannelsettings-followerchannelsettings}
|
|
3443
|
+
*/
|
|
3444
|
+
FollowerChannelSettings?: FollowerChannelSettings | undefined;
|
|
3445
|
+
/**
|
|
3446
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-linkedchannelsettings.html#cfn-medialive-channel-linkedchannelsettings-primarychannelsettings}
|
|
3447
|
+
*/
|
|
3448
|
+
PrimaryChannelSettings?: PrimaryChannelSettings | undefined;
|
|
3449
|
+
};
|
|
3420
3450
|
/**
|
|
3421
3451
|
* The configuration of the M2TS in the output.
|
|
3422
3452
|
*
|
|
@@ -4617,7 +4647,7 @@ export type OutputLockingSettings = {
|
|
|
4617
4647
|
/**
|
|
4618
4648
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-outputlockingsettings.html#cfn-medialive-channel-outputlockingsettings-pipelinelockingsettings}
|
|
4619
4649
|
*/
|
|
4620
|
-
PipelineLockingSettings?:
|
|
4650
|
+
PipelineLockingSettings?: PipelineLockingSettings | undefined;
|
|
4621
4651
|
};
|
|
4622
4652
|
/**
|
|
4623
4653
|
* The output settings.
|
|
@@ -4685,6 +4715,24 @@ export type OutputSettings = {
|
|
|
4685
4715
|
*/
|
|
4686
4716
|
UdpOutputSettings?: UdpOutputSettings | undefined;
|
|
4687
4717
|
};
|
|
4718
|
+
/**
|
|
4719
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-pipelinelockingsettings.html}
|
|
4720
|
+
*/
|
|
4721
|
+
export type PipelineLockingSettings = {
|
|
4722
|
+
/**
|
|
4723
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-pipelinelockingsettings.html#cfn-medialive-channel-pipelinelockingsettings-pipelinelockingmethod}
|
|
4724
|
+
*/
|
|
4725
|
+
PipelineLockingMethod?: string | undefined;
|
|
4726
|
+
};
|
|
4727
|
+
/**
|
|
4728
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-primarychannelsettings.html}
|
|
4729
|
+
*/
|
|
4730
|
+
export type PrimaryChannelSettings = {
|
|
4731
|
+
/**
|
|
4732
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-primarychannelsettings.html#cfn-medialive-channel-primarychannelsettings-linkedchanneltype}
|
|
4733
|
+
*/
|
|
4734
|
+
LinkedChannelType?: string | undefined;
|
|
4735
|
+
};
|
|
4688
4736
|
/**
|
|
4689
4737
|
* The settings for remixing audio in the output.
|
|
4690
4738
|
*
|
|
@@ -62,7 +62,7 @@ export type MPAIdentitySourceAttribs = {
|
|
|
62
62
|
StatusMessage: string;
|
|
63
63
|
};
|
|
64
64
|
/**
|
|
65
|
-
*
|
|
65
|
+
* SSOlong credentials. For more information see, [SSOlong](https://docs.aws.amazon.com/identity-center/) .
|
|
66
66
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mpa-identitysource-iamidentitycenter.html}
|
|
67
67
|
*/
|
|
68
68
|
export type IamIdentityCenter = {
|
|
@@ -84,7 +84,7 @@ export type IamIdentityCenter = {
|
|
|
84
84
|
*/
|
|
85
85
|
export type IdentitySourceParameters = {
|
|
86
86
|
/**
|
|
87
|
-
*
|
|
87
|
+
* SSOlong credentials.
|
|
88
88
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mpa-identitysource-identitysourceparameters.html#cfn-mpa-identitysource-identitysourceparameters-iamidentitycenter}
|
|
89
89
|
*/
|
|
90
90
|
IamIdentityCenter: IamIdentityCenter;
|