@awboost/cfn-resource-types 0.1.441 → 0.1.442
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-BedrockAgentCore-BrowserCustom.d.ts +28 -1
- package/lib/AWS-BedrockAgentCore-CodeInterpreterCustom.d.ts +28 -1
- package/lib/AWS-BedrockAgentCore-Runtime.d.ts +24 -1
- package/lib/AWS-ImageBuilder-Image.d.ts +15 -0
- package/lib/AWS-MediaLive-Channel.d.ts +6 -0
- package/lib/AWS-Neptune-EventSubscription.d.ts +32 -6
- package/lib/AWS-ObservabilityAdmin-OrganizationCentralizationRule.d.ts +152 -0
- package/lib/AWS-ObservabilityAdmin-OrganizationCentralizationRule.js +13 -0
- package/lib/AWS-PCS-Queue.d.ts +24 -0
- package/lib/AWS-S3-Bucket.d.ts +42 -22
- package/package.json +1 -1
|
@@ -50,6 +50,10 @@ export type BedrockAgentCoreBrowserCustomAttributes = {
|
|
|
50
50
|
* Timestamp when the browser was created.
|
|
51
51
|
*/
|
|
52
52
|
CreatedAt: string;
|
|
53
|
+
/**
|
|
54
|
+
* The reason for failure if the browser creation or operation failed.
|
|
55
|
+
*/
|
|
56
|
+
FailureReason: string;
|
|
53
57
|
/**
|
|
54
58
|
* Timestamp when the browser was last updated.
|
|
55
59
|
*/
|
|
@@ -69,13 +73,17 @@ export type BrowserNetworkConfiguration = {
|
|
|
69
73
|
* Network modes supported by browser
|
|
70
74
|
*/
|
|
71
75
|
NetworkMode: BrowserNetworkMode;
|
|
76
|
+
/**
|
|
77
|
+
* Network mode configuration for VPC
|
|
78
|
+
*/
|
|
79
|
+
VpcConfig?: VpcConfig;
|
|
72
80
|
};
|
|
73
81
|
/**
|
|
74
82
|
* Type definition for `AWS::BedrockAgentCore::BrowserCustom.BrowserNetworkMode`.
|
|
75
83
|
* Network modes supported by browser
|
|
76
84
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-browsernetworkmode.html}
|
|
77
85
|
*/
|
|
78
|
-
export type BrowserNetworkMode = "PUBLIC";
|
|
86
|
+
export type BrowserNetworkMode = "PUBLIC" | "VPC";
|
|
79
87
|
/**
|
|
80
88
|
* Type definition for `AWS::BedrockAgentCore::BrowserCustom.BrowserStatus`.
|
|
81
89
|
* Status of browser
|
|
@@ -115,6 +123,25 @@ export type S3Location = {
|
|
|
115
123
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-tagsmap.html}
|
|
116
124
|
*/
|
|
117
125
|
export type TagsMap = Record<string, string>;
|
|
126
|
+
/**
|
|
127
|
+
* Type definition for `AWS::BedrockAgentCore::BrowserCustom.VpcConfig`.
|
|
128
|
+
* Network mode configuration for VPC
|
|
129
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-browsercustom-vpcconfig.html}
|
|
130
|
+
*/
|
|
131
|
+
export type VpcConfig = {
|
|
132
|
+
/**
|
|
133
|
+
* Security groups for VPC
|
|
134
|
+
* @minLength `1`
|
|
135
|
+
* @maxLength `16`
|
|
136
|
+
*/
|
|
137
|
+
SecurityGroups: string[];
|
|
138
|
+
/**
|
|
139
|
+
* Subnets for VPC
|
|
140
|
+
* @minLength `1`
|
|
141
|
+
* @maxLength `16`
|
|
142
|
+
*/
|
|
143
|
+
Subnets: string[];
|
|
144
|
+
};
|
|
118
145
|
/**
|
|
119
146
|
* Resource definition for AWS::BedrockAgentCore::BrowserCustom
|
|
120
147
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-browsercustom.html}
|
|
@@ -46,6 +46,10 @@ export type BedrockAgentCoreCodeInterpreterCustomAttributes = {
|
|
|
46
46
|
* Timestamp when the code interpreter was created.
|
|
47
47
|
*/
|
|
48
48
|
CreatedAt: string;
|
|
49
|
+
/**
|
|
50
|
+
* The reason for failure if the code interpreter creation or operation failed.
|
|
51
|
+
*/
|
|
52
|
+
FailureReason: string;
|
|
49
53
|
/**
|
|
50
54
|
* Timestamp when the code interpreter was last updated.
|
|
51
55
|
*/
|
|
@@ -65,13 +69,17 @@ export type CodeInterpreterNetworkConfiguration = {
|
|
|
65
69
|
* Network modes supported by code interpreter
|
|
66
70
|
*/
|
|
67
71
|
NetworkMode: CodeInterpreterNetworkMode;
|
|
72
|
+
/**
|
|
73
|
+
* Network mode configuration for VPC
|
|
74
|
+
*/
|
|
75
|
+
VpcConfig?: VpcConfig;
|
|
68
76
|
};
|
|
69
77
|
/**
|
|
70
78
|
* Type definition for `AWS::BedrockAgentCore::CodeInterpreterCustom.CodeInterpreterNetworkMode`.
|
|
71
79
|
* Network modes supported by code interpreter
|
|
72
80
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-codeinterpretercustom-codeinterpreternetworkmode.html}
|
|
73
81
|
*/
|
|
74
|
-
export type CodeInterpreterNetworkMode = "PUBLIC" | "SANDBOX";
|
|
82
|
+
export type CodeInterpreterNetworkMode = "PUBLIC" | "SANDBOX" | "VPC";
|
|
75
83
|
/**
|
|
76
84
|
* Type definition for `AWS::BedrockAgentCore::CodeInterpreterCustom.CodeInterpreterStatus`.
|
|
77
85
|
* Status of Code interpreter
|
|
@@ -84,6 +92,25 @@ export type CodeInterpreterStatus = "CREATING" | "CREATE_FAILED" | "READY" | "DE
|
|
|
84
92
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-codeinterpretercustom-tagsmap.html}
|
|
85
93
|
*/
|
|
86
94
|
export type TagsMap = Record<string, string>;
|
|
95
|
+
/**
|
|
96
|
+
* Type definition for `AWS::BedrockAgentCore::CodeInterpreterCustom.VpcConfig`.
|
|
97
|
+
* Network mode configuration for VPC
|
|
98
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-codeinterpretercustom-vpcconfig.html}
|
|
99
|
+
*/
|
|
100
|
+
export type VpcConfig = {
|
|
101
|
+
/**
|
|
102
|
+
* Security groups for VPC
|
|
103
|
+
* @minLength `1`
|
|
104
|
+
* @maxLength `16`
|
|
105
|
+
*/
|
|
106
|
+
SecurityGroups: string[];
|
|
107
|
+
/**
|
|
108
|
+
* Subnets for VPC
|
|
109
|
+
* @minLength `1`
|
|
110
|
+
* @maxLength `16`
|
|
111
|
+
*/
|
|
112
|
+
Subnets: string[];
|
|
113
|
+
};
|
|
87
114
|
/**
|
|
88
115
|
* Resource definition for AWS::BedrockAgentCore::CodeInterpreterCustom
|
|
89
116
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-codeinterpretercustom.html}
|
|
@@ -166,13 +166,17 @@ export type NetworkConfiguration = {
|
|
|
166
166
|
* Network mode configuration type
|
|
167
167
|
*/
|
|
168
168
|
NetworkMode: NetworkMode;
|
|
169
|
+
/**
|
|
170
|
+
* Network mode configuration for VPC
|
|
171
|
+
*/
|
|
172
|
+
NetworkModeConfig?: VpcConfig;
|
|
169
173
|
};
|
|
170
174
|
/**
|
|
171
175
|
* Type definition for `AWS::BedrockAgentCore::Runtime.NetworkMode`.
|
|
172
176
|
* Network mode configuration type
|
|
173
177
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-networkmode.html}
|
|
174
178
|
*/
|
|
175
|
-
export type NetworkMode = "PUBLIC";
|
|
179
|
+
export type NetworkMode = "PUBLIC" | "VPC";
|
|
176
180
|
/**
|
|
177
181
|
* Type definition for `AWS::BedrockAgentCore::Runtime.ProtocolConfiguration`.
|
|
178
182
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-protocolconfiguration.html}
|
|
@@ -184,6 +188,25 @@ export type ProtocolConfiguration = "MCP" | "HTTP";
|
|
|
184
188
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-tagsmap.html}
|
|
185
189
|
*/
|
|
186
190
|
export type TagsMap = Record<string, string>;
|
|
191
|
+
/**
|
|
192
|
+
* Type definition for `AWS::BedrockAgentCore::Runtime.VpcConfig`.
|
|
193
|
+
* Network mode configuration for VPC
|
|
194
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-vpcconfig.html}
|
|
195
|
+
*/
|
|
196
|
+
export type VpcConfig = {
|
|
197
|
+
/**
|
|
198
|
+
* Security groups for VPC
|
|
199
|
+
* @minLength `1`
|
|
200
|
+
* @maxLength `16`
|
|
201
|
+
*/
|
|
202
|
+
SecurityGroups: string[];
|
|
203
|
+
/**
|
|
204
|
+
* Subnets for VPC
|
|
205
|
+
* @minLength `1`
|
|
206
|
+
* @maxLength `16`
|
|
207
|
+
*/
|
|
208
|
+
Subnets: string[];
|
|
209
|
+
};
|
|
187
210
|
/**
|
|
188
211
|
* Type definition for `AWS::BedrockAgentCore::Runtime.WorkloadIdentityDetails`.
|
|
189
212
|
* Configuration for workload identity
|
|
@@ -37,6 +37,10 @@ export type ImageBuilderImageProperties = {
|
|
|
37
37
|
* The Amazon Resource Name (ARN) of the infrastructure configuration.
|
|
38
38
|
*/
|
|
39
39
|
InfrastructureConfigurationArn?: string;
|
|
40
|
+
/**
|
|
41
|
+
* The logging configuration settings for the image.
|
|
42
|
+
*/
|
|
43
|
+
LoggingConfiguration?: ImageLoggingConfiguration;
|
|
40
44
|
/**
|
|
41
45
|
* The tags associated with the image.
|
|
42
46
|
*/
|
|
@@ -83,6 +87,17 @@ export type EcrConfiguration = {
|
|
|
83
87
|
*/
|
|
84
88
|
RepositoryName?: string;
|
|
85
89
|
};
|
|
90
|
+
/**
|
|
91
|
+
* Type definition for `AWS::ImageBuilder::Image.ImageLoggingConfiguration`.
|
|
92
|
+
* The logging configuration settings for the image.
|
|
93
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-image-imageloggingconfiguration.html}
|
|
94
|
+
*/
|
|
95
|
+
export type ImageLoggingConfiguration = {
|
|
96
|
+
/**
|
|
97
|
+
* The name of the log group for image build logs.
|
|
98
|
+
*/
|
|
99
|
+
LogGroupName?: string;
|
|
100
|
+
};
|
|
86
101
|
/**
|
|
87
102
|
* Type definition for `AWS::ImageBuilder::Image.ImageScanningConfiguration`.
|
|
88
103
|
* Contains settings for Image Builder image resource and container image scans.
|
|
@@ -305,6 +305,7 @@ export type Av1Settings = {
|
|
|
305
305
|
Level?: string;
|
|
306
306
|
LookAheadRateControl?: string;
|
|
307
307
|
MaxBitrate?: number;
|
|
308
|
+
MinBitrate?: number;
|
|
308
309
|
MinIInterval?: number;
|
|
309
310
|
ParDenominator?: number;
|
|
310
311
|
ParNumerator?: number;
|
|
@@ -845,6 +846,7 @@ export type H264Settings = {
|
|
|
845
846
|
Level?: string;
|
|
846
847
|
LookAheadRateControl?: string;
|
|
847
848
|
MaxBitrate?: number;
|
|
849
|
+
MinBitrate?: number;
|
|
848
850
|
MinIInterval?: number;
|
|
849
851
|
MinQp?: number;
|
|
850
852
|
NumRefFrames?: number;
|
|
@@ -903,12 +905,15 @@ export type H265Settings = {
|
|
|
903
905
|
FlickerAq?: string;
|
|
904
906
|
FramerateDenominator?: number;
|
|
905
907
|
FramerateNumerator?: number;
|
|
908
|
+
GopBReference?: string;
|
|
906
909
|
GopClosedCadence?: number;
|
|
910
|
+
GopNumBFrames?: number;
|
|
907
911
|
GopSize?: number;
|
|
908
912
|
GopSizeUnits?: string;
|
|
909
913
|
Level?: string;
|
|
910
914
|
LookAheadRateControl?: string;
|
|
911
915
|
MaxBitrate?: number;
|
|
916
|
+
MinBitrate?: number;
|
|
912
917
|
MinIInterval?: number;
|
|
913
918
|
MinQp?: number;
|
|
914
919
|
MvOverPictureBoundaries?: string;
|
|
@@ -921,6 +926,7 @@ export type H265Settings = {
|
|
|
921
926
|
ScanType?: string;
|
|
922
927
|
SceneChangeDetect?: string;
|
|
923
928
|
Slices?: number;
|
|
929
|
+
SubgopLength?: string;
|
|
924
930
|
Tier?: string;
|
|
925
931
|
TileHeight?: number;
|
|
926
932
|
TilePadding?: string;
|
|
@@ -5,24 +5,50 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-eventsubscription.html}
|
|
6
6
|
*/
|
|
7
7
|
export type NeptuneEventSubscriptionProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* A Boolean value; set to true to activate the subscription, set to false to create the subscription but not active it.
|
|
10
|
+
*/
|
|
8
11
|
Enabled?: boolean;
|
|
12
|
+
/**
|
|
13
|
+
* A list of event categories for a SourceType that you want to subscribe to. You can see a list of the categories for a given SourceType in the Events topic in the Amazon Neptune User Guide or by using the DescribeEventCategories action.
|
|
14
|
+
*/
|
|
9
15
|
EventCategories?: string[];
|
|
10
|
-
|
|
16
|
+
/**
|
|
17
|
+
* The Amazon Resource Name (ARN) of the SNS topic created for event notification. The ARN is created by Amazon SNS when you create a topic and subscribe to it.
|
|
18
|
+
*/
|
|
19
|
+
SnsTopicArn: string;
|
|
20
|
+
/**
|
|
21
|
+
* The list of identifiers of the event sources for which events will be returned. If not specified, then all sources are included in the response. An identifier must begin with a letter and must contain only ASCII letters, digits, and hyphens; it cannot end with a hyphen or contain two consecutive hyphens.
|
|
22
|
+
*/
|
|
11
23
|
SourceIds?: string[];
|
|
24
|
+
/**
|
|
25
|
+
* The type of source that will be generating the events. For example, if you want to be notified of events generated by a DB instance, you would set this parameter to db-instance. if this value is not specified, all events are returned.
|
|
26
|
+
*/
|
|
12
27
|
SourceType?: string;
|
|
28
|
+
/**
|
|
29
|
+
* The name of the subscription.
|
|
30
|
+
* @maxLength `255`
|
|
31
|
+
*/
|
|
32
|
+
SubscriptionName?: string;
|
|
33
|
+
/**
|
|
34
|
+
* An array of key-value pairs to apply to this resource.
|
|
35
|
+
*/
|
|
36
|
+
Tags?: Tag[];
|
|
13
37
|
};
|
|
14
38
|
/**
|
|
15
|
-
*
|
|
16
|
-
*
|
|
39
|
+
* Type definition for `AWS::Neptune::EventSubscription.Tag`.
|
|
40
|
+
* A key-value pair to associate with a resource.
|
|
41
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-neptune-eventsubscription-tag.html}
|
|
17
42
|
*/
|
|
18
|
-
export type
|
|
19
|
-
|
|
43
|
+
export type Tag = {
|
|
44
|
+
Key: string;
|
|
45
|
+
Value: string;
|
|
20
46
|
};
|
|
21
47
|
/**
|
|
22
48
|
* Resource Type definition for AWS::Neptune::EventSubscription
|
|
23
49
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-eventsubscription.html}
|
|
24
50
|
*/
|
|
25
|
-
export declare class NeptuneEventSubscription extends $Resource<"AWS::Neptune::EventSubscription", NeptuneEventSubscriptionProperties,
|
|
51
|
+
export declare class NeptuneEventSubscription extends $Resource<"AWS::Neptune::EventSubscription", NeptuneEventSubscriptionProperties, Record<string, never>> {
|
|
26
52
|
static readonly Type = "AWS::Neptune::EventSubscription";
|
|
27
53
|
constructor(logicalId: string, properties: NeptuneEventSubscriptionProperties, options?: $ResourceOptions);
|
|
28
54
|
}
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
|
+
/**
|
|
4
|
+
* Resource type definition for `AWS::ObservabilityAdmin::OrganizationCentralizationRule`.
|
|
5
|
+
* Resource schema for AWS:ObservabilityAdmin:OrganizationCentralizationRule
|
|
6
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-organizationcentralizationrule.html}
|
|
7
|
+
*/
|
|
8
|
+
export type ObservabilityAdminOrganizationCentralizationRuleProperties = {
|
|
9
|
+
Rule: CentralizationRule;
|
|
10
|
+
/**
|
|
11
|
+
* @minLength `1`
|
|
12
|
+
* @maxLength `100`
|
|
13
|
+
* @pattern `^[0-9A-Za-z-]+$`
|
|
14
|
+
*/
|
|
15
|
+
RuleName: string;
|
|
16
|
+
/**
|
|
17
|
+
* An array of key-value pairs to apply to this resource.
|
|
18
|
+
*/
|
|
19
|
+
Tags?: Tag[];
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* Attribute type definition for `AWS::ObservabilityAdmin::OrganizationCentralizationRule`.
|
|
23
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-organizationcentralizationrule.html#aws-resource-observabilityadmin-organizationcentralizationrule-return-values}
|
|
24
|
+
*/
|
|
25
|
+
export type ObservabilityAdminOrganizationCentralizationRuleAttributes = {
|
|
26
|
+
/**
|
|
27
|
+
* @minLength `1`
|
|
28
|
+
* @maxLength `1011`
|
|
29
|
+
* @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
|
|
30
|
+
*/
|
|
31
|
+
RuleArn: string;
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* Type definition for `AWS::ObservabilityAdmin::OrganizationCentralizationRule.CentralizationRule`.
|
|
35
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationcentralizationrule-centralizationrule.html}
|
|
36
|
+
*/
|
|
37
|
+
export type CentralizationRule = {
|
|
38
|
+
Destination: CentralizationRuleDestination;
|
|
39
|
+
Source: CentralizationRuleSource;
|
|
40
|
+
};
|
|
41
|
+
/**
|
|
42
|
+
* Type definition for `AWS::ObservabilityAdmin::OrganizationCentralizationRule.CentralizationRuleDestination`.
|
|
43
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationcentralizationrule-centralizationruledestination.html}
|
|
44
|
+
*/
|
|
45
|
+
export type CentralizationRuleDestination = {
|
|
46
|
+
/**
|
|
47
|
+
* @minLength `12`
|
|
48
|
+
* @maxLength `12`
|
|
49
|
+
* @pattern `^[0-9]{12}$`
|
|
50
|
+
*/
|
|
51
|
+
Account?: string;
|
|
52
|
+
DestinationLogsConfiguration?: DestinationLogsConfiguration;
|
|
53
|
+
/**
|
|
54
|
+
* @minLength `1`
|
|
55
|
+
*/
|
|
56
|
+
Region: string;
|
|
57
|
+
};
|
|
58
|
+
/**
|
|
59
|
+
* Type definition for `AWS::ObservabilityAdmin::OrganizationCentralizationRule.CentralizationRuleSource`.
|
|
60
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationcentralizationrule-centralizationrulesource.html}
|
|
61
|
+
*/
|
|
62
|
+
export type CentralizationRuleSource = {
|
|
63
|
+
/**
|
|
64
|
+
* @minLength `1`
|
|
65
|
+
*/
|
|
66
|
+
Regions: string[];
|
|
67
|
+
/**
|
|
68
|
+
* @minLength `1`
|
|
69
|
+
* @maxLength `2000`
|
|
70
|
+
*/
|
|
71
|
+
Scope?: string;
|
|
72
|
+
SourceLogsConfiguration?: SourceLogsConfiguration;
|
|
73
|
+
};
|
|
74
|
+
/**
|
|
75
|
+
* Type definition for `AWS::ObservabilityAdmin::OrganizationCentralizationRule.DestinationLogsConfiguration`.
|
|
76
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationcentralizationrule-destinationlogsconfiguration.html}
|
|
77
|
+
*/
|
|
78
|
+
export type DestinationLogsConfiguration = {
|
|
79
|
+
BackupConfiguration?: LogsBackupConfiguration;
|
|
80
|
+
LogsEncryptionConfiguration?: LogsEncryptionConfiguration;
|
|
81
|
+
};
|
|
82
|
+
/**
|
|
83
|
+
* Type definition for `AWS::ObservabilityAdmin::OrganizationCentralizationRule.LogsBackupConfiguration`.
|
|
84
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationcentralizationrule-logsbackupconfiguration.html}
|
|
85
|
+
*/
|
|
86
|
+
export type LogsBackupConfiguration = {
|
|
87
|
+
/**
|
|
88
|
+
* @minLength `1`
|
|
89
|
+
* @maxLength `1011`
|
|
90
|
+
* @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
|
|
91
|
+
*/
|
|
92
|
+
KmsKeyArn?: string;
|
|
93
|
+
/**
|
|
94
|
+
* @minLength `1`
|
|
95
|
+
*/
|
|
96
|
+
Region: string;
|
|
97
|
+
};
|
|
98
|
+
/**
|
|
99
|
+
* Type definition for `AWS::ObservabilityAdmin::OrganizationCentralizationRule.LogsEncryptionConfiguration`.
|
|
100
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationcentralizationrule-logsencryptionconfiguration.html}
|
|
101
|
+
*/
|
|
102
|
+
export type LogsEncryptionConfiguration = {
|
|
103
|
+
EncryptionConflictResolutionStrategy?: "ALLOW" | "SKIP";
|
|
104
|
+
EncryptionStrategy: "CUSTOMER_MANAGED" | "AWS_OWNED";
|
|
105
|
+
/**
|
|
106
|
+
* @minLength `1`
|
|
107
|
+
* @maxLength `1011`
|
|
108
|
+
* @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
|
|
109
|
+
*/
|
|
110
|
+
KmsKeyArn?: string;
|
|
111
|
+
};
|
|
112
|
+
/**
|
|
113
|
+
* Type definition for `AWS::ObservabilityAdmin::OrganizationCentralizationRule.SourceLogsConfiguration`.
|
|
114
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationcentralizationrule-sourcelogsconfiguration.html}
|
|
115
|
+
*/
|
|
116
|
+
export type SourceLogsConfiguration = {
|
|
117
|
+
EncryptedLogGroupStrategy: "ALLOW" | "SKIP";
|
|
118
|
+
/**
|
|
119
|
+
* @minLength `1`
|
|
120
|
+
* @maxLength `2000`
|
|
121
|
+
*/
|
|
122
|
+
LogGroupSelectionCriteria: string;
|
|
123
|
+
};
|
|
124
|
+
/**
|
|
125
|
+
* Type definition for `AWS::ObservabilityAdmin::OrganizationCentralizationRule.Tag`.
|
|
126
|
+
* A key-value pair to associate with a resource.
|
|
127
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationcentralizationrule-tag.html}
|
|
128
|
+
*/
|
|
129
|
+
export type Tag = {
|
|
130
|
+
/**
|
|
131
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
132
|
+
* @minLength `1`
|
|
133
|
+
* @maxLength `128`
|
|
134
|
+
*/
|
|
135
|
+
Key: string;
|
|
136
|
+
/**
|
|
137
|
+
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
138
|
+
* @minLength `0`
|
|
139
|
+
* @maxLength `256`
|
|
140
|
+
*/
|
|
141
|
+
Value: string;
|
|
142
|
+
};
|
|
143
|
+
/**
|
|
144
|
+
* Resource type definition for `AWS::ObservabilityAdmin::OrganizationCentralizationRule`.
|
|
145
|
+
* Resource schema for AWS:ObservabilityAdmin:OrganizationCentralizationRule
|
|
146
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-organizationcentralizationrule.html}
|
|
147
|
+
*/
|
|
148
|
+
export declare class ObservabilityAdminOrganizationCentralizationRule extends $Resource<"AWS::ObservabilityAdmin::OrganizationCentralizationRule", ObservabilityAdminOrganizationCentralizationRuleProperties, ObservabilityAdminOrganizationCentralizationRuleAttributes> {
|
|
149
|
+
static readonly Type = "AWS::ObservabilityAdmin::OrganizationCentralizationRule";
|
|
150
|
+
constructor(logicalId: string, properties: ObservabilityAdminOrganizationCentralizationRuleProperties, options?: $ResourceOptions);
|
|
151
|
+
}
|
|
152
|
+
//# sourceMappingURL=AWS-ObservabilityAdmin-OrganizationCentralizationRule.d.ts.map
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource type definition for `AWS::ObservabilityAdmin::OrganizationCentralizationRule`.
|
|
4
|
+
* Resource schema for AWS:ObservabilityAdmin:OrganizationCentralizationRule
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-organizationcentralizationrule.html}
|
|
6
|
+
*/
|
|
7
|
+
export class ObservabilityAdminOrganizationCentralizationRule extends $Resource {
|
|
8
|
+
static Type = "AWS::ObservabilityAdmin::OrganizationCentralizationRule";
|
|
9
|
+
constructor(logicalId, properties, options) {
|
|
10
|
+
super(logicalId, ObservabilityAdminOrganizationCentralizationRule.Type, properties, options);
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AWS-ObservabilityAdmin-OrganizationCentralizationRule.js.map
|
package/lib/AWS-PCS-Queue.d.ts
CHANGED
|
@@ -17,6 +17,15 @@ export type PCSQueueProperties = {
|
|
|
17
17
|
* The name that identifies the queue.
|
|
18
18
|
*/
|
|
19
19
|
Name?: string;
|
|
20
|
+
/**
|
|
21
|
+
* The Slurm configuration for the queue.
|
|
22
|
+
*/
|
|
23
|
+
SlurmConfiguration?: {
|
|
24
|
+
/**
|
|
25
|
+
* Custom Slurm parameters that directly map to Slurm configuration settings.
|
|
26
|
+
*/
|
|
27
|
+
SlurmCustomSettings?: SlurmCustomSetting[];
|
|
28
|
+
};
|
|
20
29
|
/**
|
|
21
30
|
* 1 or more tags added to the resource. Each tag consists of a tag key and tag value. The tag value is optional and can be an empty string.
|
|
22
31
|
*/
|
|
@@ -80,6 +89,21 @@ export type ErrorInfo = {
|
|
|
80
89
|
*/
|
|
81
90
|
Message?: string;
|
|
82
91
|
};
|
|
92
|
+
/**
|
|
93
|
+
* Type definition for `AWS::PCS::Queue.SlurmCustomSetting`.
|
|
94
|
+
* Additional settings that directly map to Slurm settings.
|
|
95
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-queue-slurmcustomsetting.html}
|
|
96
|
+
*/
|
|
97
|
+
export type SlurmCustomSetting = {
|
|
98
|
+
/**
|
|
99
|
+
* AWS PCS supports configuration of the Slurm parameters for queues:.
|
|
100
|
+
*/
|
|
101
|
+
ParameterName: string;
|
|
102
|
+
/**
|
|
103
|
+
* The value for the configured Slurm setting.
|
|
104
|
+
*/
|
|
105
|
+
ParameterValue: string;
|
|
106
|
+
};
|
|
83
107
|
/**
|
|
84
108
|
* AWS::PCS::Queue resource creates an AWS PCS queue.
|
|
85
109
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-queue.html}
|
package/lib/AWS-S3-Bucket.d.ts
CHANGED
|
@@ -40,7 +40,7 @@ export type S3BucketProperties = {
|
|
|
40
40
|
*/
|
|
41
41
|
IntelligentTieringConfigurations?: IntelligentTieringConfiguration[];
|
|
42
42
|
/**
|
|
43
|
-
* Specifies the
|
|
43
|
+
* Specifies the S3 Inventory configuration for an Amazon S3 bucket. For more information, see [GET Bucket inventory](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketGETInventoryConfig.html) in the *Amazon S3 API Reference*.
|
|
44
44
|
*/
|
|
45
45
|
InventoryConfigurations?: InventoryConfiguration[];
|
|
46
46
|
/**
|
|
@@ -51,6 +51,9 @@ export type S3BucketProperties = {
|
|
|
51
51
|
* Settings that define where logs are stored.
|
|
52
52
|
*/
|
|
53
53
|
LoggingConfiguration?: LoggingConfiguration;
|
|
54
|
+
/**
|
|
55
|
+
* The S3 Metadata configuration for a general purpose bucket.
|
|
56
|
+
*/
|
|
54
57
|
MetadataConfiguration?: MetadataConfiguration;
|
|
55
58
|
/**
|
|
56
59
|
* The metadata table configuration of an S3 general purpose bucket.
|
|
@@ -70,6 +73,8 @@ export type S3BucketProperties = {
|
|
|
70
73
|
+ The ``DefaultRetention`` settings require both a mode and a period.
|
|
71
74
|
+ The ``DefaultRetention`` period can be either ``Days`` or ``Years`` but you must select one. You cannot specify ``Days`` and ``Years`` at the same time.
|
|
72
75
|
+ You can enable Object Lock for new or existing buckets. For more information, see [Configuring Object Lock](https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-lock-configure.html).
|
|
76
|
+
|
|
77
|
+
You must URL encode any signed header values that contain spaces. For example, if your header value is ``my file.txt``, containing two spaces after ``my``, you must URL encode this value to ``my%20%20file.txt``.
|
|
73
78
|
*/
|
|
74
79
|
ObjectLockConfiguration?: ObjectLockConfiguration;
|
|
75
80
|
/**
|
|
@@ -114,30 +119,33 @@ export type S3BucketAttributes = {
|
|
|
114
119
|
Arn: string;
|
|
115
120
|
DomainName: string;
|
|
116
121
|
DualStackDomainName: string;
|
|
122
|
+
/**
|
|
123
|
+
* The S3 Metadata configuration for a general purpose bucket.
|
|
124
|
+
*/
|
|
117
125
|
MetadataConfiguration: {
|
|
118
126
|
/**
|
|
119
|
-
* The destination information for the
|
|
127
|
+
* The destination information for the S3 Metadata configuration.
|
|
120
128
|
*/
|
|
121
129
|
Destination: {
|
|
122
130
|
/**
|
|
123
|
-
* The ARN of the table bucket.
|
|
131
|
+
* The Amazon Resource Name (ARN) of the table bucket where the metadata configuration is stored.
|
|
124
132
|
*/
|
|
125
133
|
TableBucketArn: string;
|
|
126
134
|
/**
|
|
127
|
-
* The type of the table bucket.
|
|
135
|
+
* The type of the table bucket where the metadata configuration is stored. The ``aws`` value indicates an AWS managed table bucket, and the ``customer`` value indicates a customer-managed table bucket. V2 metadata configurations are stored in AWS managed table buckets, and V1 metadata configurations are stored in customer-managed table buckets.
|
|
128
136
|
*/
|
|
129
137
|
TableBucketType: "aws" | "customer";
|
|
130
138
|
/**
|
|
131
|
-
* The namespace
|
|
139
|
+
* The namespace in the table bucket where the metadata tables for a metadata configuration are stored.
|
|
132
140
|
*/
|
|
133
141
|
TableNamespace: string;
|
|
134
142
|
};
|
|
135
143
|
/**
|
|
136
|
-
* The configuration for
|
|
144
|
+
* The inventory table configuration for a metadata configuration.
|
|
137
145
|
*/
|
|
138
146
|
InventoryTableConfiguration: {
|
|
139
147
|
/**
|
|
140
|
-
* The ARN
|
|
148
|
+
* The Amazon Resource Name (ARN) for the inventory table.
|
|
141
149
|
*/
|
|
142
150
|
TableArn: string;
|
|
143
151
|
/**
|
|
@@ -146,11 +154,11 @@ export type S3BucketAttributes = {
|
|
|
146
154
|
TableName: string;
|
|
147
155
|
};
|
|
148
156
|
/**
|
|
149
|
-
* The configuration for
|
|
157
|
+
* The journal table configuration for a metadata configuration.
|
|
150
158
|
*/
|
|
151
159
|
JournalTableConfiguration: {
|
|
152
160
|
/**
|
|
153
|
-
* The ARN
|
|
161
|
+
* The Amazon Resource Name (ARN) for the journal table.
|
|
154
162
|
*/
|
|
155
163
|
TableArn: string;
|
|
156
164
|
/**
|
|
@@ -439,7 +447,7 @@ export type IntelligentTieringConfiguration = {
|
|
|
439
447
|
};
|
|
440
448
|
/**
|
|
441
449
|
* Type definition for `AWS::S3::Bucket.InventoryConfiguration`.
|
|
442
|
-
* Specifies the
|
|
450
|
+
* Specifies the S3 Inventory configuration for an Amazon S3 bucket. For more information, see [GET Bucket inventory](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketGETInventoryConfig.html) in the *Amazon S3 API Reference*.
|
|
443
451
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-inventoryconfiguration.html}
|
|
444
452
|
*/
|
|
445
453
|
export type InventoryConfiguration = {
|
|
@@ -474,11 +482,12 @@ export type InventoryConfiguration = {
|
|
|
474
482
|
};
|
|
475
483
|
/**
|
|
476
484
|
* Type definition for `AWS::S3::Bucket.InventoryTableConfiguration`.
|
|
485
|
+
* The inventory table configuration for an S3 Metadata configuration.
|
|
477
486
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-inventorytableconfiguration.html}
|
|
478
487
|
*/
|
|
479
488
|
export type InventoryTableConfiguration = {
|
|
480
489
|
/**
|
|
481
|
-
*
|
|
490
|
+
* The configuration state of the inventory table, indicating whether the inventory table is enabled or disabled.
|
|
482
491
|
*/
|
|
483
492
|
ConfigurationState: "ENABLED" | "DISABLED";
|
|
484
493
|
/**
|
|
@@ -488,6 +497,7 @@ export type InventoryTableConfiguration = {
|
|
|
488
497
|
};
|
|
489
498
|
/**
|
|
490
499
|
* Type definition for `AWS::S3::Bucket.JournalTableConfiguration`.
|
|
500
|
+
* The journal table configuration for an S3 Metadata configuration.
|
|
491
501
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-journaltableconfiguration.html}
|
|
492
502
|
*/
|
|
493
503
|
export type JournalTableConfiguration = {
|
|
@@ -495,6 +505,9 @@ export type JournalTableConfiguration = {
|
|
|
495
505
|
* The encryption configuration for the journal table.
|
|
496
506
|
*/
|
|
497
507
|
EncryptionConfiguration?: MetadataTableEncryptionConfiguration;
|
|
508
|
+
/**
|
|
509
|
+
* The journal table record expiration settings for the journal table.
|
|
510
|
+
*/
|
|
498
511
|
RecordExpiration: RecordExpiration;
|
|
499
512
|
};
|
|
500
513
|
/**
|
|
@@ -558,39 +571,43 @@ export type LoggingConfiguration = {
|
|
|
558
571
|
};
|
|
559
572
|
/**
|
|
560
573
|
* Type definition for `AWS::S3::Bucket.MetadataConfiguration`.
|
|
574
|
+
* Creates a V2 S3 Metadata configuration of a general purpose bucket. For more information, see [Accelerating data discovery with S3 Metadata](https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-overview.html) in the *Amazon S3 User Guide*.
|
|
561
575
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadataconfiguration.html}
|
|
562
576
|
*/
|
|
563
577
|
export type MetadataConfiguration = {
|
|
564
578
|
/**
|
|
565
|
-
* The configuration for
|
|
579
|
+
* The inventory table configuration for a metadata configuration.
|
|
566
580
|
*/
|
|
567
581
|
InventoryTableConfiguration?: InventoryTableConfiguration;
|
|
568
582
|
/**
|
|
569
|
-
* The configuration for
|
|
583
|
+
* The journal table configuration for a metadata configuration.
|
|
570
584
|
*/
|
|
571
585
|
JournalTableConfiguration: JournalTableConfiguration;
|
|
572
586
|
};
|
|
573
587
|
/**
|
|
574
588
|
* Type definition for `AWS::S3::Bucket.MetadataDestination`.
|
|
589
|
+
* The destination information for the S3 Metadata configuration.
|
|
575
590
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadatadestination.html}
|
|
576
591
|
*/
|
|
577
592
|
export type MetadataDestination = {
|
|
578
593
|
/**
|
|
579
|
-
* The ARN of the table bucket.
|
|
594
|
+
* The Amazon Resource Name (ARN) of the table bucket where the metadata configuration is stored.
|
|
580
595
|
*/
|
|
581
596
|
TableBucketArn?: string;
|
|
582
597
|
/**
|
|
583
|
-
* The type of the table bucket.
|
|
598
|
+
* The type of the table bucket where the metadata configuration is stored. The ``aws`` value indicates an AWS managed table bucket, and the ``customer`` value indicates a customer-managed table bucket. V2 metadata configurations are stored in AWS managed table buckets, and V1 metadata configurations are stored in customer-managed table buckets.
|
|
584
599
|
*/
|
|
585
600
|
TableBucketType: "aws" | "customer";
|
|
586
601
|
/**
|
|
587
|
-
* The namespace
|
|
602
|
+
* The namespace in the table bucket where the metadata tables for a metadata configuration are stored.
|
|
588
603
|
*/
|
|
589
604
|
TableNamespace?: string;
|
|
590
605
|
};
|
|
591
606
|
/**
|
|
592
607
|
* Type definition for `AWS::S3::Bucket.MetadataTableConfiguration`.
|
|
593
|
-
*
|
|
608
|
+
* We recommend that you create your S3 Metadata configurations by using the V2 [MetadataConfiguration](https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-properties-s3-bucket-metadataconfiguration.html) resource type. We no longer recommend using the V1 ``MetadataTableConfiguration`` resource type.
|
|
609
|
+
If you created your S3 Metadata configuration before July 15, 2025, we recommend that you delete and re-create your configuration by using the [MetadataConfiguration](https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-properties-s3-bucket-metadataconfiguration.html) resource type so that you can expire journal table records and create a live inventory table.
|
|
610
|
+
Creates a V1 S3 Metadata configuration for a general purpose bucket. For more information, see [Accelerating data discovery with S3 Metadata](https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-overview.html) in the *Amazon S3 User Guide*.
|
|
594
611
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadatatableconfiguration.html}
|
|
595
612
|
*/
|
|
596
613
|
export type MetadataTableConfiguration = {
|
|
@@ -601,15 +618,16 @@ export type MetadataTableConfiguration = {
|
|
|
601
618
|
};
|
|
602
619
|
/**
|
|
603
620
|
* Type definition for `AWS::S3::Bucket.MetadataTableEncryptionConfiguration`.
|
|
621
|
+
* The encryption settings for an S3 Metadata journal table or inventory table configuration.
|
|
604
622
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadatatableencryptionconfiguration.html}
|
|
605
623
|
*/
|
|
606
624
|
export type MetadataTableEncryptionConfiguration = {
|
|
607
625
|
/**
|
|
608
|
-
*
|
|
626
|
+
* If server-side encryption with KMSlong (KMS) keys (SSE-KMS) is specified, you must also specify the KMS key Amazon Resource Name (ARN). You must specify a customer-managed KMS key that's located in the same Region as the general purpose bucket that corresponds to the metadata table configuration.
|
|
609
627
|
*/
|
|
610
628
|
KmsKeyArn?: string;
|
|
611
629
|
/**
|
|
612
|
-
*
|
|
630
|
+
* The encryption type specified for a metadata table. To specify server-side encryption with KMSlong (KMS) keys (SSE-KMS), use the ``aws:kms`` value. To specify server-side encryption with Amazon S3 managed keys (SSE-S3), use the ``AES256`` value.
|
|
613
631
|
*/
|
|
614
632
|
SseAlgorithm: "aws:kms" | "AES256";
|
|
615
633
|
};
|
|
@@ -840,15 +858,16 @@ export type QueueConfiguration = {
|
|
|
840
858
|
};
|
|
841
859
|
/**
|
|
842
860
|
* Type definition for `AWS::S3::Bucket.RecordExpiration`.
|
|
861
|
+
* The journal table record expiration settings for a journal table in an S3 Metadata configuration.
|
|
843
862
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-recordexpiration.html}
|
|
844
863
|
*/
|
|
845
864
|
export type RecordExpiration = {
|
|
846
865
|
/**
|
|
847
|
-
*
|
|
866
|
+
* If you enable journal table record expiration, you can set the number of days to retain your journal table records. Journal table records must be retained for a minimum of 7 days. To set this value, specify any whole number from ``7`` to ``2147483647``. For example, to retain your journal table records for one year, set this value to ``365``.
|
|
848
867
|
*/
|
|
849
868
|
Days?: number;
|
|
850
869
|
/**
|
|
851
|
-
* Specifies whether record expiration is enabled or disabled.
|
|
870
|
+
* Specifies whether journal table record expiration is enabled or disabled.
|
|
852
871
|
*/
|
|
853
872
|
Expiration: "ENABLED" | "DISABLED";
|
|
854
873
|
};
|
|
@@ -957,6 +976,7 @@ export type ReplicationDestination = {
|
|
|
957
976
|
/**
|
|
958
977
|
* The storage class to use when replicating objects, such as S3 Standard or reduced redundancy. By default, Amazon S3 uses the storage class of the source object to create the object replica.
|
|
959
978
|
For valid values, see the ``StorageClass`` element of the [PUT Bucket replication](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTreplication.html) action in the *Amazon S3 API Reference*.
|
|
979
|
+
``FSX_OPENZFS`` is not an accepted value when replicating objects.
|
|
960
980
|
*/
|
|
961
981
|
StorageClass?: "DEEP_ARCHIVE" | "GLACIER" | "GLACIER_IR" | "INTELLIGENT_TIERING" | "ONEZONE_IA" | "REDUCED_REDUNDANCY" | "STANDARD" | "STANDARD_IA";
|
|
962
982
|
};
|
|
@@ -1199,7 +1219,7 @@ export type S3KeyFilter = {
|
|
|
1199
1219
|
};
|
|
1200
1220
|
/**
|
|
1201
1221
|
* Type definition for `AWS::S3::Bucket.S3TablesDestination`.
|
|
1202
|
-
* The destination information for
|
|
1222
|
+
* The destination information for a V1 S3 Metadata configuration. The destination table bucket must be in the same Region and AWS-account as the general purpose bucket. The specified metadata table name must be unique within the ``aws_s3_metadata`` namespace in the destination table bucket.
|
|
1203
1223
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-s3tablesdestination.html}
|
|
1204
1224
|
*/
|
|
1205
1225
|
export type S3TablesDestination = {
|