@awboost/cfn-resource-types 0.1.529 → 0.1.530
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/AWS-EMRContainers-Endpoint.d.ts +179 -0
- package/lib/AWS-EMRContainers-Endpoint.js +12 -0
- package/lib/AWS-EMRContainers-SecurityConfiguration.d.ts +318 -0
- package/lib/AWS-EMRContainers-SecurityConfiguration.js +12 -0
- package/lib/AWS-MediaLive-Channel.d.ts +27 -1
- package/package.json +1 -1
|
@@ -0,0 +1,179 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Resource Schema of AWS::EMRContainers::Endpoint Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-endpoint.html}
|
|
6
|
+
*/
|
|
7
|
+
export type EMRContainersEndpointProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The configuration overrides for the managed endpoint.
|
|
10
|
+
*/
|
|
11
|
+
ConfigurationOverrides?: ConfigurationOverrides;
|
|
12
|
+
/**
|
|
13
|
+
* The execution role ARN for the managed endpoint.
|
|
14
|
+
*/
|
|
15
|
+
ExecutionRoleArn: string;
|
|
16
|
+
/**
|
|
17
|
+
* The name of the managed endpoint.
|
|
18
|
+
* @minLength `1`
|
|
19
|
+
* @maxLength `64`
|
|
20
|
+
* @pattern `[0-9A-Za-z][A-Za-z0-9\-_]*`
|
|
21
|
+
*/
|
|
22
|
+
Name?: string;
|
|
23
|
+
/**
|
|
24
|
+
* The Amazon EMR release label.
|
|
25
|
+
* @minLength `1`
|
|
26
|
+
* @maxLength `64`
|
|
27
|
+
* @pattern `[A-Za-z0-9._/-]+`
|
|
28
|
+
*/
|
|
29
|
+
ReleaseLabel: string;
|
|
30
|
+
/**
|
|
31
|
+
* An array of key-value pairs to apply to this managed endpoint.
|
|
32
|
+
* @maxLength `50`
|
|
33
|
+
*/
|
|
34
|
+
Tags?: Tag[];
|
|
35
|
+
/**
|
|
36
|
+
* The type of the managed endpoint.
|
|
37
|
+
*/
|
|
38
|
+
Type: string;
|
|
39
|
+
/**
|
|
40
|
+
* The ID of the virtual cluster for which the managed endpoint is created.
|
|
41
|
+
*/
|
|
42
|
+
VirtualClusterId: string;
|
|
43
|
+
};
|
|
44
|
+
/**
|
|
45
|
+
* Attribute type definition for `AWS::EMRContainers::Endpoint`.
|
|
46
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-endpoint.html#aws-resource-emrcontainers-endpoint-return-values}
|
|
47
|
+
*/
|
|
48
|
+
export type EMRContainersEndpointAttributes = {
|
|
49
|
+
/**
|
|
50
|
+
* The ARN of the managed endpoint.
|
|
51
|
+
*/
|
|
52
|
+
Arn: string;
|
|
53
|
+
/**
|
|
54
|
+
* The certificate authority for the managed endpoint.
|
|
55
|
+
*/
|
|
56
|
+
CertificateAuthority: {
|
|
57
|
+
CertificateArn: string;
|
|
58
|
+
CertificateData: string;
|
|
59
|
+
};
|
|
60
|
+
/**
|
|
61
|
+
* The date and time when the managed endpoint was created.
|
|
62
|
+
*/
|
|
63
|
+
CreatedAt: string;
|
|
64
|
+
/**
|
|
65
|
+
* The reason for a failed managed endpoint.
|
|
66
|
+
*/
|
|
67
|
+
FailureReason: string;
|
|
68
|
+
/**
|
|
69
|
+
* The ID of the managed endpoint.
|
|
70
|
+
*/
|
|
71
|
+
Id: string;
|
|
72
|
+
/**
|
|
73
|
+
* The security group associated with the managed endpoint.
|
|
74
|
+
*/
|
|
75
|
+
SecurityGroup: string;
|
|
76
|
+
/**
|
|
77
|
+
* The server URL of the managed endpoint.
|
|
78
|
+
*/
|
|
79
|
+
ServerUrl: string;
|
|
80
|
+
/**
|
|
81
|
+
* The state of the managed endpoint.
|
|
82
|
+
*/
|
|
83
|
+
State: string;
|
|
84
|
+
/**
|
|
85
|
+
* Additional details about the state of the managed endpoint.
|
|
86
|
+
*/
|
|
87
|
+
StateDetails: string;
|
|
88
|
+
};
|
|
89
|
+
/**
|
|
90
|
+
* Type definition for `AWS::EMRContainers::Endpoint.Certificate`.
|
|
91
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-certificate.html}
|
|
92
|
+
*/
|
|
93
|
+
export type Certificate = {
|
|
94
|
+
CertificateArn?: string;
|
|
95
|
+
CertificateData?: string;
|
|
96
|
+
};
|
|
97
|
+
/**
|
|
98
|
+
* Type definition for `AWS::EMRContainers::Endpoint.CloudWatchMonitoringConfiguration`.
|
|
99
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-cloudwatchmonitoringconfiguration.html}
|
|
100
|
+
*/
|
|
101
|
+
export type CloudWatchMonitoringConfiguration = {
|
|
102
|
+
LogGroupName: string;
|
|
103
|
+
LogStreamNamePrefix?: string;
|
|
104
|
+
};
|
|
105
|
+
/**
|
|
106
|
+
* Type definition for `AWS::EMRContainers::Endpoint.ConfigurationOverrides`.
|
|
107
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-configurationoverrides.html}
|
|
108
|
+
*/
|
|
109
|
+
export type ConfigurationOverrides = {
|
|
110
|
+
/**
|
|
111
|
+
* @maxLength `100`
|
|
112
|
+
*/
|
|
113
|
+
ApplicationConfiguration?: EMREKSConfiguration[];
|
|
114
|
+
MonitoringConfiguration?: MonitoringConfiguration;
|
|
115
|
+
};
|
|
116
|
+
/**
|
|
117
|
+
* Type definition for `AWS::EMRContainers::Endpoint.ContainerLogRotationConfiguration`.
|
|
118
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-containerlogrotationconfiguration.html}
|
|
119
|
+
*/
|
|
120
|
+
export type ContainerLogRotationConfiguration = {
|
|
121
|
+
MaxFilesToKeep: number;
|
|
122
|
+
RotationSize: string;
|
|
123
|
+
};
|
|
124
|
+
/**
|
|
125
|
+
* Type definition for `AWS::EMRContainers::Endpoint.EMREKSConfiguration`.
|
|
126
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-emreksconfiguration.html}
|
|
127
|
+
*/
|
|
128
|
+
export type EMREKSConfiguration = {
|
|
129
|
+
Classification: string;
|
|
130
|
+
/**
|
|
131
|
+
* @maxLength `100`
|
|
132
|
+
*/
|
|
133
|
+
Configurations?: EMREKSConfiguration[];
|
|
134
|
+
Properties?: Record<string, string>;
|
|
135
|
+
};
|
|
136
|
+
/**
|
|
137
|
+
* Type definition for `AWS::EMRContainers::Endpoint.MonitoringConfiguration`.
|
|
138
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-monitoringconfiguration.html}
|
|
139
|
+
*/
|
|
140
|
+
export type MonitoringConfiguration = {
|
|
141
|
+
CloudWatchMonitoringConfiguration?: CloudWatchMonitoringConfiguration;
|
|
142
|
+
ContainerLogRotationConfiguration?: ContainerLogRotationConfiguration;
|
|
143
|
+
PersistentAppUI?: "ENABLED" | "DISABLED";
|
|
144
|
+
S3MonitoringConfiguration?: S3MonitoringConfiguration;
|
|
145
|
+
};
|
|
146
|
+
/**
|
|
147
|
+
* Type definition for `AWS::EMRContainers::Endpoint.S3MonitoringConfiguration`.
|
|
148
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-s3monitoringconfiguration.html}
|
|
149
|
+
*/
|
|
150
|
+
export type S3MonitoringConfiguration = {
|
|
151
|
+
LogUri: string;
|
|
152
|
+
};
|
|
153
|
+
/**
|
|
154
|
+
* Type definition for `AWS::EMRContainers::Endpoint.Tag`.
|
|
155
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-endpoint-tag.html}
|
|
156
|
+
*/
|
|
157
|
+
export type Tag = {
|
|
158
|
+
/**
|
|
159
|
+
* A user-defined key, which is the minimum required information for a valid tag.
|
|
160
|
+
* @minLength `1`
|
|
161
|
+
* @maxLength `128`
|
|
162
|
+
*/
|
|
163
|
+
Key: string;
|
|
164
|
+
/**
|
|
165
|
+
* A user-defined value, which is optional in a tag.
|
|
166
|
+
* @minLength `0`
|
|
167
|
+
* @maxLength `256`
|
|
168
|
+
*/
|
|
169
|
+
Value: string;
|
|
170
|
+
};
|
|
171
|
+
/**
|
|
172
|
+
* Resource Schema of AWS::EMRContainers::Endpoint Type
|
|
173
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-endpoint.html}
|
|
174
|
+
*/
|
|
175
|
+
export declare class EMRContainersEndpoint extends $Resource<"AWS::EMRContainers::Endpoint", EMRContainersEndpointProperties, EMRContainersEndpointAttributes> {
|
|
176
|
+
static readonly Type = "AWS::EMRContainers::Endpoint";
|
|
177
|
+
constructor(logicalId: string, properties: EMRContainersEndpointProperties, options?: $ResourceOptions);
|
|
178
|
+
}
|
|
179
|
+
//# sourceMappingURL=AWS-EMRContainers-Endpoint.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Schema of AWS::EMRContainers::Endpoint Type
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-endpoint.html}
|
|
5
|
+
*/
|
|
6
|
+
export class EMRContainersEndpoint extends $Resource {
|
|
7
|
+
static Type = "AWS::EMRContainers::Endpoint";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, EMRContainersEndpoint.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-EMRContainers-Endpoint.js.map
|
|
@@ -0,0 +1,318 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Resource Schema of AWS::EMRContainers::SecurityConfiguration Type
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-securityconfiguration.html}
|
|
6
|
+
*/
|
|
7
|
+
export type EMRContainersSecurityConfigurationProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* Container provider for the security configuration.
|
|
10
|
+
*/
|
|
11
|
+
ContainerProvider?: ContainerProvider;
|
|
12
|
+
/**
|
|
13
|
+
* The name of the security configuration.
|
|
14
|
+
* @minLength `1`
|
|
15
|
+
* @maxLength `64`
|
|
16
|
+
* @pattern `^[a-zA-Z0-9\-_]+$`
|
|
17
|
+
*/
|
|
18
|
+
Name?: string;
|
|
19
|
+
/**
|
|
20
|
+
* Security configuration input for the security configuration.
|
|
21
|
+
*/
|
|
22
|
+
SecurityConfigurationData: SecurityConfigurationData;
|
|
23
|
+
/**
|
|
24
|
+
* An array of key-value pairs to apply to this security configuration.
|
|
25
|
+
*/
|
|
26
|
+
Tags?: Tag[];
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* Attribute type definition for `AWS::EMRContainers::SecurityConfiguration`.
|
|
30
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-securityconfiguration.html#aws-resource-emrcontainers-securityconfiguration-return-values}
|
|
31
|
+
*/
|
|
32
|
+
export type EMRContainersSecurityConfigurationAttributes = {
|
|
33
|
+
/**
|
|
34
|
+
* The ARN of the security configuration.
|
|
35
|
+
*/
|
|
36
|
+
Arn: string;
|
|
37
|
+
/**
|
|
38
|
+
* The ID of the security configuration.
|
|
39
|
+
*/
|
|
40
|
+
Id: string;
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.AtRestEncryptionConfiguration`.
|
|
44
|
+
* At-rest encryption configuration.
|
|
45
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-atrestencryptionconfiguration.html}
|
|
46
|
+
*/
|
|
47
|
+
export type AtRestEncryptionConfiguration = {
|
|
48
|
+
/**
|
|
49
|
+
* Local disk encryption configuration.
|
|
50
|
+
*/
|
|
51
|
+
LocalDiskEncryptionConfiguration?: LocalDiskEncryptionConfiguration;
|
|
52
|
+
/**
|
|
53
|
+
* S3 encryption configuration.
|
|
54
|
+
*/
|
|
55
|
+
S3EncryptionConfiguration?: S3EncryptionConfiguration;
|
|
56
|
+
};
|
|
57
|
+
/**
|
|
58
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.AuthenticationConfiguration`.
|
|
59
|
+
* Authentication configuration for the security configuration.
|
|
60
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-authenticationconfiguration.html}
|
|
61
|
+
*/
|
|
62
|
+
export type AuthenticationConfiguration = {
|
|
63
|
+
/**
|
|
64
|
+
* IAM configuration.
|
|
65
|
+
*/
|
|
66
|
+
IAMConfiguration?: IAMConfiguration;
|
|
67
|
+
/**
|
|
68
|
+
* Identity Center configuration.
|
|
69
|
+
*/
|
|
70
|
+
IdentityCenterConfiguration?: IdentityCenterConfiguration;
|
|
71
|
+
};
|
|
72
|
+
/**
|
|
73
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.AuthorizationConfiguration`.
|
|
74
|
+
* Authorization configuration for the security configuration.
|
|
75
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-authorizationconfiguration.html}
|
|
76
|
+
*/
|
|
77
|
+
export type AuthorizationConfiguration = {
|
|
78
|
+
/**
|
|
79
|
+
* Lake Formation configuration.
|
|
80
|
+
*/
|
|
81
|
+
LakeFormationConfiguration?: LakeFormationConfiguration;
|
|
82
|
+
};
|
|
83
|
+
/**
|
|
84
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.ContainerInfo`.
|
|
85
|
+
* Container information.
|
|
86
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-containerinfo.html}
|
|
87
|
+
*/
|
|
88
|
+
export type ContainerInfo = {
|
|
89
|
+
/**
|
|
90
|
+
* EKS information.
|
|
91
|
+
*/
|
|
92
|
+
EksInfo?: EksInfo;
|
|
93
|
+
};
|
|
94
|
+
/**
|
|
95
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.ContainerProvider`.
|
|
96
|
+
* Container provider information.
|
|
97
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-containerprovider.html}
|
|
98
|
+
*/
|
|
99
|
+
export type ContainerProvider = {
|
|
100
|
+
/**
|
|
101
|
+
* The container provider ID.
|
|
102
|
+
*/
|
|
103
|
+
Id: string;
|
|
104
|
+
/**
|
|
105
|
+
* Container information.
|
|
106
|
+
*/
|
|
107
|
+
Info?: ContainerInfo;
|
|
108
|
+
/**
|
|
109
|
+
* The container provider type.
|
|
110
|
+
*/
|
|
111
|
+
Type: "EKS";
|
|
112
|
+
};
|
|
113
|
+
/**
|
|
114
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.EksInfo`.
|
|
115
|
+
* EKS information.
|
|
116
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-eksinfo.html}
|
|
117
|
+
*/
|
|
118
|
+
export type EksInfo = {
|
|
119
|
+
/**
|
|
120
|
+
* The EKS namespace.
|
|
121
|
+
*/
|
|
122
|
+
Namespace?: string;
|
|
123
|
+
};
|
|
124
|
+
/**
|
|
125
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.EncryptionConfiguration`.
|
|
126
|
+
* Encryption configuration for the security configuration.
|
|
127
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-encryptionconfiguration.html}
|
|
128
|
+
*/
|
|
129
|
+
export type EncryptionConfiguration = {
|
|
130
|
+
/**
|
|
131
|
+
* At-rest encryption configuration.
|
|
132
|
+
*/
|
|
133
|
+
AtRestEncryptionConfiguration?: AtRestEncryptionConfiguration;
|
|
134
|
+
/**
|
|
135
|
+
* In-transit encryption configuration.
|
|
136
|
+
*/
|
|
137
|
+
InTransitEncryptionConfiguration?: InTransitEncryptionConfiguration;
|
|
138
|
+
};
|
|
139
|
+
/**
|
|
140
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.IAMConfiguration`.
|
|
141
|
+
* IAM configuration.
|
|
142
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-iamconfiguration.html}
|
|
143
|
+
*/
|
|
144
|
+
export type IAMConfiguration = {
|
|
145
|
+
/**
|
|
146
|
+
* The system role ARN.
|
|
147
|
+
* @pattern `^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):iam::\d{12}:role/.+$`
|
|
148
|
+
*/
|
|
149
|
+
SystemRole?: string;
|
|
150
|
+
};
|
|
151
|
+
/**
|
|
152
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.IdentityCenterConfiguration`.
|
|
153
|
+
* Identity Center configuration.
|
|
154
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-identitycenterconfiguration.html}
|
|
155
|
+
*/
|
|
156
|
+
export type IdentityCenterConfiguration = {
|
|
157
|
+
/**
|
|
158
|
+
* Whether to enable Identity Center integration.
|
|
159
|
+
*/
|
|
160
|
+
EnableIdentityCenter?: boolean;
|
|
161
|
+
/**
|
|
162
|
+
* Whether Identity Center application assignment is required.
|
|
163
|
+
*/
|
|
164
|
+
IdentityCenterApplicationAssignmentRequired?: boolean;
|
|
165
|
+
/**
|
|
166
|
+
* The ARN of the Identity Center instance.
|
|
167
|
+
* @pattern `^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):sso:::instance/(sso)?ins-[a-zA-Z0-9-.]{16}$`
|
|
168
|
+
*/
|
|
169
|
+
IdentityCenterInstanceARN?: string;
|
|
170
|
+
};
|
|
171
|
+
/**
|
|
172
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.InTransitEncryptionConfiguration`.
|
|
173
|
+
* In-transit encryption configuration.
|
|
174
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-intransitencryptionconfiguration.html}
|
|
175
|
+
*/
|
|
176
|
+
export type InTransitEncryptionConfiguration = {
|
|
177
|
+
/**
|
|
178
|
+
* TLS certificate configuration for in-transit encryption.
|
|
179
|
+
*/
|
|
180
|
+
TLSCertificateConfiguration?: TLSCertificateConfiguration;
|
|
181
|
+
};
|
|
182
|
+
/**
|
|
183
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.LakeFormationConfiguration`.
|
|
184
|
+
* Lake Formation configuration.
|
|
185
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-lakeformationconfiguration.html}
|
|
186
|
+
*/
|
|
187
|
+
export type LakeFormationConfiguration = {
|
|
188
|
+
/**
|
|
189
|
+
* The session tag to authorize Lake Formation access.
|
|
190
|
+
* @minLength `1`
|
|
191
|
+
* @maxLength `256`
|
|
192
|
+
*/
|
|
193
|
+
AuthorizedSessionTagValue?: string;
|
|
194
|
+
/**
|
|
195
|
+
* Whether query access control is enabled.
|
|
196
|
+
*/
|
|
197
|
+
QueryAccessControlEnabled?: boolean;
|
|
198
|
+
/**
|
|
199
|
+
* The ARN of the query engine role.
|
|
200
|
+
* @pattern `^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):iam::\d{12}:role/.+$`
|
|
201
|
+
*/
|
|
202
|
+
QueryEngineRoleArn?: string;
|
|
203
|
+
/**
|
|
204
|
+
* Secure namespace information for Lake Formation.
|
|
205
|
+
*/
|
|
206
|
+
SecureNamespaceInfo?: SecureNamespaceInfo;
|
|
207
|
+
};
|
|
208
|
+
/**
|
|
209
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.LocalDiskEncryptionConfiguration`.
|
|
210
|
+
* Local disk encryption configuration.
|
|
211
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-localdiskencryptionconfiguration.html}
|
|
212
|
+
*/
|
|
213
|
+
export type LocalDiskEncryptionConfiguration = {
|
|
214
|
+
/**
|
|
215
|
+
* The AWS KMS key ID.
|
|
216
|
+
*/
|
|
217
|
+
AwsKmsKeyId?: string;
|
|
218
|
+
/**
|
|
219
|
+
* The encryption key provider type.
|
|
220
|
+
*/
|
|
221
|
+
EncryptionKeyProviderType?: "AwsKms";
|
|
222
|
+
};
|
|
223
|
+
/**
|
|
224
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.S3EncryptionConfiguration`.
|
|
225
|
+
* S3 encryption configuration.
|
|
226
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-s3encryptionconfiguration.html}
|
|
227
|
+
*/
|
|
228
|
+
export type S3EncryptionConfiguration = {
|
|
229
|
+
/**
|
|
230
|
+
* The S3 encryption option.
|
|
231
|
+
*/
|
|
232
|
+
EncryptionOption?: "SSE-S3" | "SSE-KMS" | "CSE-KMS";
|
|
233
|
+
/**
|
|
234
|
+
* The KMS key ID for encryption.
|
|
235
|
+
*/
|
|
236
|
+
KMSKeyId?: string;
|
|
237
|
+
};
|
|
238
|
+
/**
|
|
239
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.SecureNamespaceInfo`.
|
|
240
|
+
* Secure namespace information for Lake Formation.
|
|
241
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-securenamespaceinfo.html}
|
|
242
|
+
*/
|
|
243
|
+
export type SecureNamespaceInfo = {
|
|
244
|
+
/**
|
|
245
|
+
* The ID of the cluster.
|
|
246
|
+
* @minLength `1`
|
|
247
|
+
* @maxLength `100`
|
|
248
|
+
*/
|
|
249
|
+
ClusterId?: string;
|
|
250
|
+
/**
|
|
251
|
+
* The namespace.
|
|
252
|
+
* @minLength `1`
|
|
253
|
+
* @maxLength `63`
|
|
254
|
+
*/
|
|
255
|
+
Namespace?: string;
|
|
256
|
+
};
|
|
257
|
+
/**
|
|
258
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.SecurityConfigurationData`.
|
|
259
|
+
* Security configuration data containing encryption and authorization settings.
|
|
260
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-securityconfigurationdata.html}
|
|
261
|
+
*/
|
|
262
|
+
export type SecurityConfigurationData = {
|
|
263
|
+
/**
|
|
264
|
+
* Authentication configuration for the security configuration.
|
|
265
|
+
*/
|
|
266
|
+
AuthenticationConfiguration?: AuthenticationConfiguration;
|
|
267
|
+
/**
|
|
268
|
+
* Authorization configuration for the security configuration.
|
|
269
|
+
*/
|
|
270
|
+
AuthorizationConfiguration?: AuthorizationConfiguration;
|
|
271
|
+
/**
|
|
272
|
+
* Encryption configuration for the security configuration.
|
|
273
|
+
*/
|
|
274
|
+
EncryptionConfiguration?: EncryptionConfiguration;
|
|
275
|
+
};
|
|
276
|
+
/**
|
|
277
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.Tag`.
|
|
278
|
+
* An arbitrary set of tags (key-value pairs) for this security configuration.
|
|
279
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-tag.html}
|
|
280
|
+
*/
|
|
281
|
+
export type Tag = {
|
|
282
|
+
/**
|
|
283
|
+
* The key name of the tag.
|
|
284
|
+
*/
|
|
285
|
+
Key: string;
|
|
286
|
+
/**
|
|
287
|
+
* The value for the tag.
|
|
288
|
+
*/
|
|
289
|
+
Value: string;
|
|
290
|
+
};
|
|
291
|
+
/**
|
|
292
|
+
* Type definition for `AWS::EMRContainers::SecurityConfiguration.TLSCertificateConfiguration`.
|
|
293
|
+
* TLS certificate configuration for in-transit encryption.
|
|
294
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-emrcontainers-securityconfiguration-tlscertificateconfiguration.html}
|
|
295
|
+
*/
|
|
296
|
+
export type TLSCertificateConfiguration = {
|
|
297
|
+
/**
|
|
298
|
+
* The certificate provider type.
|
|
299
|
+
*/
|
|
300
|
+
CertificateProviderType?: "PEM";
|
|
301
|
+
/**
|
|
302
|
+
* The ARN of the secret containing the private key.
|
|
303
|
+
*/
|
|
304
|
+
PrivateKeySecretArn?: string;
|
|
305
|
+
/**
|
|
306
|
+
* The ARN of the secret containing the public key.
|
|
307
|
+
*/
|
|
308
|
+
PublicKeySecretArn?: string;
|
|
309
|
+
};
|
|
310
|
+
/**
|
|
311
|
+
* Resource Schema of AWS::EMRContainers::SecurityConfiguration Type
|
|
312
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-emrcontainers-securityconfiguration.html}
|
|
313
|
+
*/
|
|
314
|
+
export declare class EMRContainersSecurityConfiguration extends $Resource<"AWS::EMRContainers::SecurityConfiguration", EMRContainersSecurityConfigurationProperties, EMRContainersSecurityConfigurationAttributes> {
|
|
315
|
+
static readonly Type = "AWS::EMRContainers::SecurityConfiguration";
|
|
316
|
+
constructor(logicalId: string, properties: EMRContainersSecurityConfigurationProperties, options?: $ResourceOptions);
|
|
317
|
+
}
|
|
318
|
+
//# sourceMappingURL=AWS-EMRContainers-SecurityConfiguration.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
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 class EMRContainersSecurityConfiguration extends $Resource {
|
|
7
|
+
static Type = "AWS::EMRContainers::SecurityConfiguration";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, EMRContainersSecurityConfiguration.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-EMRContainers-SecurityConfiguration.js.map
|
|
@@ -14,6 +14,7 @@ export type MediaLiveChannelProperties = {
|
|
|
14
14
|
EncoderSettings?: EncoderSettings;
|
|
15
15
|
InputAttachments?: InputAttachment[];
|
|
16
16
|
InputSpecification?: InputSpecification;
|
|
17
|
+
LinkedChannelSettings?: LinkedChannelSettings;
|
|
17
18
|
LogLevel?: string;
|
|
18
19
|
Maintenance?: MaintenanceCreateSettings;
|
|
19
20
|
Name?: string;
|
|
@@ -747,6 +748,14 @@ export type Fmp4HlsSettings = {
|
|
|
747
748
|
NielsenId3Behavior?: string;
|
|
748
749
|
TimedMetadataBehavior?: string;
|
|
749
750
|
};
|
|
751
|
+
/**
|
|
752
|
+
* Type definition for `AWS::MediaLive::Channel.FollowerChannelSettings`.
|
|
753
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-followerchannelsettings.html}
|
|
754
|
+
*/
|
|
755
|
+
export type FollowerChannelSettings = {
|
|
756
|
+
LinkedChannelType?: string;
|
|
757
|
+
PrimaryChannelArn?: string;
|
|
758
|
+
};
|
|
750
759
|
/**
|
|
751
760
|
* Type definition for `AWS::MediaLive::Channel.FrameCaptureCdnSettings`.
|
|
752
761
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-framecapturecdnsettings.html}
|
|
@@ -1178,6 +1187,14 @@ export type InputSpecification = {
|
|
|
1178
1187
|
export type KeyProviderSettings = {
|
|
1179
1188
|
StaticKeySettings?: StaticKeySettings;
|
|
1180
1189
|
};
|
|
1190
|
+
/**
|
|
1191
|
+
* Type definition for `AWS::MediaLive::Channel.LinkedChannelSettings`.
|
|
1192
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-linkedchannelsettings.html}
|
|
1193
|
+
*/
|
|
1194
|
+
export type LinkedChannelSettings = {
|
|
1195
|
+
FollowerChannelSettings?: FollowerChannelSettings;
|
|
1196
|
+
PrimaryChannelSettings?: PrimaryChannelSettings;
|
|
1197
|
+
};
|
|
1181
1198
|
/**
|
|
1182
1199
|
* Type definition for `AWS::MediaLive::Channel.M2tsSettings`.
|
|
1183
1200
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-m2tssettings.html}
|
|
@@ -1599,7 +1616,16 @@ export type PassThroughSettings = Record<string, any>;
|
|
|
1599
1616
|
* Type definition for `AWS::MediaLive::Channel.PipelineLockingSettings`.
|
|
1600
1617
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-pipelinelockingsettings.html}
|
|
1601
1618
|
*/
|
|
1602
|
-
export type PipelineLockingSettings =
|
|
1619
|
+
export type PipelineLockingSettings = {
|
|
1620
|
+
PipelineLockingMethod?: string;
|
|
1621
|
+
};
|
|
1622
|
+
/**
|
|
1623
|
+
* Type definition for `AWS::MediaLive::Channel.PrimaryChannelSettings`.
|
|
1624
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-primarychannelsettings.html}
|
|
1625
|
+
*/
|
|
1626
|
+
export type PrimaryChannelSettings = {
|
|
1627
|
+
LinkedChannelType?: string;
|
|
1628
|
+
};
|
|
1603
1629
|
/**
|
|
1604
1630
|
* Type definition for `AWS::MediaLive::Channel.RawSettings`.
|
|
1605
1631
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-medialive-channel-rawsettings.html}
|