@awboost/cfn-resource-types 0.1.396 → 0.1.398
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-IVS-PlaybackRestrictionPolicy.d.ts +2 -2
- package/lib/AWS-IVS-Stage.d.ts +48 -0
- package/lib/AWS-ObservabilityAdmin-OrganizationTelemetryRule.d.ts +151 -0
- package/lib/AWS-ObservabilityAdmin-OrganizationTelemetryRule.js +12 -0
- package/lib/AWS-ObservabilityAdmin-TelemetryRule.d.ts +147 -0
- package/lib/AWS-ObservabilityAdmin-TelemetryRule.js +12 -0
- package/lib/AWS-OpenSearchService-Domain.d.ts +10 -0
- package/lib/AWS-QuickSight-DataSet.d.ts +10 -10
- package/lib/AWS-SageMaker-Cluster.d.ts +11 -0
- package/lib/AWS-SageMaker-Domain.d.ts +0 -5
- package/package.json +1 -1
|
@@ -8,11 +8,11 @@ export type IVSPlaybackRestrictionPolicyProperties = {
|
|
|
8
8
|
/**
|
|
9
9
|
* A list of country codes that control geoblocking restriction. Allowed values are the officially assigned ISO 3166-1 alpha-2 codes. Default: All countries (an empty array).
|
|
10
10
|
*/
|
|
11
|
-
AllowedCountries
|
|
11
|
+
AllowedCountries?: string[];
|
|
12
12
|
/**
|
|
13
13
|
* A list of origin sites that control CORS restriction. Allowed values are the same as valid values of the Origin header defined at https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Origin
|
|
14
14
|
*/
|
|
15
|
-
AllowedOrigins
|
|
15
|
+
AllowedOrigins?: string[];
|
|
16
16
|
/**
|
|
17
17
|
* Whether channel playback is constrained by origin site.
|
|
18
18
|
*/
|
package/lib/AWS-IVS-Stage.d.ts
CHANGED
|
@@ -47,12 +47,34 @@ export type IVSStageAttributes = {
|
|
|
47
47
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ivs-stage-autoparticipantrecordingconfiguration.html}
|
|
48
48
|
*/
|
|
49
49
|
export type AutoParticipantRecordingConfiguration = {
|
|
50
|
+
/**
|
|
51
|
+
* HLS configuration object for individual participant recording.
|
|
52
|
+
*/
|
|
53
|
+
HlsConfiguration?: {
|
|
54
|
+
/**
|
|
55
|
+
* An object representing a configuration of participant HLS recordings for individual participant recording.
|
|
56
|
+
*/
|
|
57
|
+
ParticipantRecordingHlsConfiguration?: {
|
|
58
|
+
/**
|
|
59
|
+
* Defines the target duration for recorded segments generated when recording a stage participant. Segments may have durations longer than the specified value when needed to ensure each segment begins with a keyframe. Default: 6.
|
|
60
|
+
* @min `2`
|
|
61
|
+
* @max `10`
|
|
62
|
+
*/
|
|
63
|
+
TargetSegmentDurationSeconds?: number;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
50
66
|
/**
|
|
51
67
|
* Types of media to be recorded. Default: AUDIO_VIDEO.
|
|
52
68
|
* @minLength `0`
|
|
53
69
|
* @maxLength `1`
|
|
54
70
|
*/
|
|
55
71
|
MediaTypes?: ("AUDIO_VIDEO" | "AUDIO_ONLY")[];
|
|
72
|
+
/**
|
|
73
|
+
* If a stage publisher disconnects and then reconnects within the specified interval, the multiple recordings will be considered a single recording and merged together. The default value is 0, which disables merging.
|
|
74
|
+
* @min `0`
|
|
75
|
+
* @max `300`
|
|
76
|
+
*/
|
|
77
|
+
RecordingReconnectWindowSeconds?: number;
|
|
56
78
|
/**
|
|
57
79
|
* ARN of the StorageConfiguration resource to use for individual participant recording.
|
|
58
80
|
* @minLength `0`
|
|
@@ -60,6 +82,32 @@ export type AutoParticipantRecordingConfiguration = {
|
|
|
60
82
|
* @pattern `^$|^arn:aws:ivs:[a-z0-9-]+:[0-9]+:storage-configuration/[a-zA-Z0-9-]+$`
|
|
61
83
|
*/
|
|
62
84
|
StorageConfigurationArn: string;
|
|
85
|
+
/**
|
|
86
|
+
* A complex type that allows you to enable/disable the recording of thumbnails for individual participant recording and modify the interval at which thumbnails are generated for the live session.
|
|
87
|
+
*/
|
|
88
|
+
ThumbnailConfiguration?: {
|
|
89
|
+
/**
|
|
90
|
+
* An object representing a configuration of thumbnails for recorded video from an individual participant.
|
|
91
|
+
*/
|
|
92
|
+
ParticipantThumbnailConfiguration?: {
|
|
93
|
+
/**
|
|
94
|
+
* Thumbnail recording mode. Default: DISABLED.
|
|
95
|
+
*/
|
|
96
|
+
RecordingMode?: "INTERVAL" | "DISABLED";
|
|
97
|
+
/**
|
|
98
|
+
* Indicates the format in which thumbnails are recorded. SEQUENTIAL records all generated thumbnails in a serial manner, to the media/thumbnails/high directory. LATEST saves the latest thumbnail in media/latest_thumbnail/high/thumb.jpg and overwrites it at the interval specified by targetIntervalSeconds. You can enable both SEQUENTIAL and LATEST. Default: SEQUENTIAL.
|
|
99
|
+
* @minLength `0`
|
|
100
|
+
* @maxLength `2`
|
|
101
|
+
*/
|
|
102
|
+
Storage?: ("SEQUENTIAL" | "LATEST")[];
|
|
103
|
+
/**
|
|
104
|
+
* The targeted thumbnail-generation interval in seconds. This is configurable only if recordingMode is INTERVAL. Default: 60.
|
|
105
|
+
* @min `1`
|
|
106
|
+
* @max `86400`
|
|
107
|
+
*/
|
|
108
|
+
TargetIntervalSeconds?: number;
|
|
109
|
+
};
|
|
110
|
+
};
|
|
63
111
|
};
|
|
64
112
|
/**
|
|
65
113
|
* Type definition for `AWS::IVS::Stage.Tag`.
|
|
@@ -0,0 +1,151 @@
|
|
|
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
|
+
* The AWS::ObservabilityAdmin::OrganizationTelemetryRule resource defines a CloudWatch Observability Admin Organization Telemetry Rule.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-organizationtelemetryrule.html}
|
|
6
|
+
*/
|
|
7
|
+
export type ObservabilityAdminOrganizationTelemetryRuleProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The telemetry rule
|
|
10
|
+
*/
|
|
11
|
+
Rule: TelemetryRule;
|
|
12
|
+
/**
|
|
13
|
+
* The name of the organization telemetry rule
|
|
14
|
+
* @minLength `1`
|
|
15
|
+
* @maxLength `100`
|
|
16
|
+
* @pattern `^[0-9A-Za-z-]+$`
|
|
17
|
+
*/
|
|
18
|
+
RuleName: string;
|
|
19
|
+
/**
|
|
20
|
+
* An array of key-value pairs to apply to this resource
|
|
21
|
+
*/
|
|
22
|
+
Tags?: Tag[];
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* Attribute type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule`.
|
|
26
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-organizationtelemetryrule.html#aws-resource-observabilityadmin-organizationtelemetryrule-return-values}
|
|
27
|
+
*/
|
|
28
|
+
export type ObservabilityAdminOrganizationTelemetryRuleAttributes = {
|
|
29
|
+
/**
|
|
30
|
+
* The arn of the organization telemetry rule
|
|
31
|
+
* @minLength `1`
|
|
32
|
+
* @maxLength `1011`
|
|
33
|
+
* @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
|
|
34
|
+
*/
|
|
35
|
+
RuleArn: string;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.DestinationType`.
|
|
39
|
+
* Type of telemetry destination
|
|
40
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-destinationtype.html}
|
|
41
|
+
*/
|
|
42
|
+
export type DestinationType = "cloud-watch-logs";
|
|
43
|
+
/**
|
|
44
|
+
* Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.ResourceType`.
|
|
45
|
+
* Resource Type associated with the Organization Telemetry Rule
|
|
46
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-resourcetype.html}
|
|
47
|
+
*/
|
|
48
|
+
export type ResourceType = "AWS::EC2::VPC";
|
|
49
|
+
/**
|
|
50
|
+
* Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.Tag`.
|
|
51
|
+
* A key-value pair to associate with a resource
|
|
52
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-tag.html}
|
|
53
|
+
*/
|
|
54
|
+
export type Tag = {
|
|
55
|
+
/**
|
|
56
|
+
* 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 -.
|
|
57
|
+
* @minLength `1`
|
|
58
|
+
* @maxLength `128`
|
|
59
|
+
*/
|
|
60
|
+
Key: string;
|
|
61
|
+
/**
|
|
62
|
+
* 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 -.
|
|
63
|
+
* @minLength `0`
|
|
64
|
+
* @maxLength `256`
|
|
65
|
+
*/
|
|
66
|
+
Value: string;
|
|
67
|
+
};
|
|
68
|
+
/**
|
|
69
|
+
* Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.TelemetryDestinationConfiguration`.
|
|
70
|
+
* The destination configuration for telemetry data
|
|
71
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-telemetrydestinationconfiguration.html}
|
|
72
|
+
*/
|
|
73
|
+
export type TelemetryDestinationConfiguration = {
|
|
74
|
+
/**
|
|
75
|
+
* Pattern for telemetry data destination
|
|
76
|
+
*/
|
|
77
|
+
DestinationPattern?: string;
|
|
78
|
+
/**
|
|
79
|
+
* Type of telemetry destination
|
|
80
|
+
*/
|
|
81
|
+
DestinationType?: DestinationType;
|
|
82
|
+
/**
|
|
83
|
+
* Number of days to retain the telemetry data in the specified destination
|
|
84
|
+
*/
|
|
85
|
+
RetentionInDays?: number;
|
|
86
|
+
/**
|
|
87
|
+
* Telemetry parameters for VPC Flow logs
|
|
88
|
+
*/
|
|
89
|
+
VPCFlowLogParameters?: VPCFlowLogParameters;
|
|
90
|
+
};
|
|
91
|
+
/**
|
|
92
|
+
* Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.TelemetryRule`.
|
|
93
|
+
* The telemetry rule
|
|
94
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-telemetryrule.html}
|
|
95
|
+
*/
|
|
96
|
+
export type TelemetryRule = {
|
|
97
|
+
/**
|
|
98
|
+
* The destination configuration for telemetry data
|
|
99
|
+
*/
|
|
100
|
+
DestinationConfiguration?: TelemetryDestinationConfiguration;
|
|
101
|
+
/**
|
|
102
|
+
* Resource Type associated with the Organization Telemetry Rule
|
|
103
|
+
*/
|
|
104
|
+
ResourceType: ResourceType;
|
|
105
|
+
/**
|
|
106
|
+
* Selection Criteria on scope level for rule application
|
|
107
|
+
*/
|
|
108
|
+
Scope?: string;
|
|
109
|
+
/**
|
|
110
|
+
* Selection Criteria on resource level for rule application
|
|
111
|
+
*/
|
|
112
|
+
SelectionCriteria?: string;
|
|
113
|
+
/**
|
|
114
|
+
* Telemetry Type associated with the Organization Telemetry Rule
|
|
115
|
+
*/
|
|
116
|
+
TelemetryType: TelemetryType;
|
|
117
|
+
};
|
|
118
|
+
/**
|
|
119
|
+
* Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.TelemetryType`.
|
|
120
|
+
* Telemetry Type associated with the Organization Telemetry Rule
|
|
121
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-telemetrytype.html}
|
|
122
|
+
*/
|
|
123
|
+
export type TelemetryType = "Logs";
|
|
124
|
+
/**
|
|
125
|
+
* Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.VPCFlowLogParameters`.
|
|
126
|
+
* Telemetry parameters for VPC Flow logs
|
|
127
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-vpcflowlogparameters.html}
|
|
128
|
+
*/
|
|
129
|
+
export type VPCFlowLogParameters = {
|
|
130
|
+
/**
|
|
131
|
+
* The fields to include in the flow log record. If you omit this parameter, the flow log is created using the default format.
|
|
132
|
+
*/
|
|
133
|
+
LogFormat?: string;
|
|
134
|
+
/**
|
|
135
|
+
* The maximum interval of time, in seconds, during which a flow of packets is captured and aggregated into a flow log record. Default is 600s.
|
|
136
|
+
*/
|
|
137
|
+
MaxAggregationInterval?: number;
|
|
138
|
+
/**
|
|
139
|
+
* The type of traffic captured for the flow log. Default is ALL
|
|
140
|
+
*/
|
|
141
|
+
TrafficType?: string;
|
|
142
|
+
};
|
|
143
|
+
/**
|
|
144
|
+
* The AWS::ObservabilityAdmin::OrganizationTelemetryRule resource defines a CloudWatch Observability Admin Organization Telemetry Rule.
|
|
145
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-organizationtelemetryrule.html}
|
|
146
|
+
*/
|
|
147
|
+
export declare class ObservabilityAdminOrganizationTelemetryRule extends $Resource<"AWS::ObservabilityAdmin::OrganizationTelemetryRule", ObservabilityAdminOrganizationTelemetryRuleProperties, ObservabilityAdminOrganizationTelemetryRuleAttributes> {
|
|
148
|
+
static readonly Type = "AWS::ObservabilityAdmin::OrganizationTelemetryRule";
|
|
149
|
+
constructor(logicalId: string, properties: ObservabilityAdminOrganizationTelemetryRuleProperties, options?: $ResourceOptions);
|
|
150
|
+
}
|
|
151
|
+
//# sourceMappingURL=AWS-ObservabilityAdmin-OrganizationTelemetryRule.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* The AWS::ObservabilityAdmin::OrganizationTelemetryRule resource defines a CloudWatch Observability Admin Organization Telemetry Rule.
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-organizationtelemetryrule.html}
|
|
5
|
+
*/
|
|
6
|
+
export class ObservabilityAdminOrganizationTelemetryRule extends $Resource {
|
|
7
|
+
static Type = "AWS::ObservabilityAdmin::OrganizationTelemetryRule";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, ObservabilityAdminOrganizationTelemetryRule.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-ObservabilityAdmin-OrganizationTelemetryRule.js.map
|
|
@@ -0,0 +1,147 @@
|
|
|
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
|
+
* The AWS::ObservabilityAdmin::TelemetryRule resource defines a CloudWatch Observability Admin Telemetry Rule.
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetryrule.html}
|
|
6
|
+
*/
|
|
7
|
+
export type ObservabilityAdminTelemetryRuleProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The telemetry rule
|
|
10
|
+
*/
|
|
11
|
+
Rule: TelemetryRule;
|
|
12
|
+
/**
|
|
13
|
+
* The name of the telemetry rule
|
|
14
|
+
* @minLength `1`
|
|
15
|
+
* @maxLength `100`
|
|
16
|
+
* @pattern `^[0-9A-Za-z-]+$`
|
|
17
|
+
*/
|
|
18
|
+
RuleName: string;
|
|
19
|
+
/**
|
|
20
|
+
* An array of key-value pairs to apply to this resource
|
|
21
|
+
*/
|
|
22
|
+
Tags?: Tag[];
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* Attribute type definition for `AWS::ObservabilityAdmin::TelemetryRule`.
|
|
26
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetryrule.html#aws-resource-observabilityadmin-telemetryrule-return-values}
|
|
27
|
+
*/
|
|
28
|
+
export type ObservabilityAdminTelemetryRuleAttributes = {
|
|
29
|
+
/**
|
|
30
|
+
* The arn of the telemetry rule
|
|
31
|
+
* @minLength `1`
|
|
32
|
+
* @maxLength `1011`
|
|
33
|
+
* @pattern `^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$`
|
|
34
|
+
*/
|
|
35
|
+
RuleArn: string;
|
|
36
|
+
};
|
|
37
|
+
/**
|
|
38
|
+
* Type definition for `AWS::ObservabilityAdmin::TelemetryRule.DestinationType`.
|
|
39
|
+
* Type of telemetry destination
|
|
40
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-destinationtype.html}
|
|
41
|
+
*/
|
|
42
|
+
export type DestinationType = "cloud-watch-logs";
|
|
43
|
+
/**
|
|
44
|
+
* Type definition for `AWS::ObservabilityAdmin::TelemetryRule.ResourceType`.
|
|
45
|
+
* Resource Type associated with the Telemetry Rule
|
|
46
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-resourcetype.html}
|
|
47
|
+
*/
|
|
48
|
+
export type ResourceType = "AWS::EC2::VPC";
|
|
49
|
+
/**
|
|
50
|
+
* Type definition for `AWS::ObservabilityAdmin::TelemetryRule.Tag`.
|
|
51
|
+
* A key-value pair to associate with a resource
|
|
52
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-tag.html}
|
|
53
|
+
*/
|
|
54
|
+
export type Tag = {
|
|
55
|
+
/**
|
|
56
|
+
* 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 -.
|
|
57
|
+
* @minLength `1`
|
|
58
|
+
* @maxLength `128`
|
|
59
|
+
*/
|
|
60
|
+
Key: string;
|
|
61
|
+
/**
|
|
62
|
+
* 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 -.
|
|
63
|
+
* @minLength `0`
|
|
64
|
+
* @maxLength `256`
|
|
65
|
+
*/
|
|
66
|
+
Value: string;
|
|
67
|
+
};
|
|
68
|
+
/**
|
|
69
|
+
* Type definition for `AWS::ObservabilityAdmin::TelemetryRule.TelemetryDestinationConfiguration`.
|
|
70
|
+
* The destination configuration for telemetry data
|
|
71
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-telemetrydestinationconfiguration.html}
|
|
72
|
+
*/
|
|
73
|
+
export type TelemetryDestinationConfiguration = {
|
|
74
|
+
/**
|
|
75
|
+
* Pattern for telemetry data destination
|
|
76
|
+
*/
|
|
77
|
+
DestinationPattern?: string;
|
|
78
|
+
/**
|
|
79
|
+
* Type of telemetry destination
|
|
80
|
+
*/
|
|
81
|
+
DestinationType?: DestinationType;
|
|
82
|
+
/**
|
|
83
|
+
* Number of days to retain the telemetry data in the specified destination
|
|
84
|
+
*/
|
|
85
|
+
RetentionInDays?: number;
|
|
86
|
+
/**
|
|
87
|
+
* Telemetry parameters for VPC Flow logs
|
|
88
|
+
*/
|
|
89
|
+
VPCFlowLogParameters?: VPCFlowLogParameters;
|
|
90
|
+
};
|
|
91
|
+
/**
|
|
92
|
+
* Type definition for `AWS::ObservabilityAdmin::TelemetryRule.TelemetryRule`.
|
|
93
|
+
* The telemetry rule
|
|
94
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-telemetryrule.html}
|
|
95
|
+
*/
|
|
96
|
+
export type TelemetryRule = {
|
|
97
|
+
/**
|
|
98
|
+
* The destination configuration for telemetry data
|
|
99
|
+
*/
|
|
100
|
+
DestinationConfiguration?: TelemetryDestinationConfiguration;
|
|
101
|
+
/**
|
|
102
|
+
* Resource Type associated with the Telemetry Rule
|
|
103
|
+
*/
|
|
104
|
+
ResourceType: ResourceType;
|
|
105
|
+
/**
|
|
106
|
+
* Selection Criteria on resource level for rule application
|
|
107
|
+
*/
|
|
108
|
+
SelectionCriteria?: string;
|
|
109
|
+
/**
|
|
110
|
+
* Telemetry Type associated with the Telemetry Rule
|
|
111
|
+
*/
|
|
112
|
+
TelemetryType: TelemetryType;
|
|
113
|
+
};
|
|
114
|
+
/**
|
|
115
|
+
* Type definition for `AWS::ObservabilityAdmin::TelemetryRule.TelemetryType`.
|
|
116
|
+
* Telemetry Type associated with the Telemetry Rule
|
|
117
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-telemetrytype.html}
|
|
118
|
+
*/
|
|
119
|
+
export type TelemetryType = "Logs";
|
|
120
|
+
/**
|
|
121
|
+
* Type definition for `AWS::ObservabilityAdmin::TelemetryRule.VPCFlowLogParameters`.
|
|
122
|
+
* Telemetry parameters for VPC Flow logs
|
|
123
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-vpcflowlogparameters.html}
|
|
124
|
+
*/
|
|
125
|
+
export type VPCFlowLogParameters = {
|
|
126
|
+
/**
|
|
127
|
+
* The fields to include in the flow log record. If you omit this parameter, the flow log is created using the default format.
|
|
128
|
+
*/
|
|
129
|
+
LogFormat?: string;
|
|
130
|
+
/**
|
|
131
|
+
* The maximum interval of time, in seconds, during which a flow of packets is captured and aggregated into a flow log record. Default is 600s.
|
|
132
|
+
*/
|
|
133
|
+
MaxAggregationInterval?: number;
|
|
134
|
+
/**
|
|
135
|
+
* The type of traffic captured for the flow log. Default is ALL
|
|
136
|
+
*/
|
|
137
|
+
TrafficType?: string;
|
|
138
|
+
};
|
|
139
|
+
/**
|
|
140
|
+
* The AWS::ObservabilityAdmin::TelemetryRule resource defines a CloudWatch Observability Admin Telemetry Rule.
|
|
141
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetryrule.html}
|
|
142
|
+
*/
|
|
143
|
+
export declare class ObservabilityAdminTelemetryRule extends $Resource<"AWS::ObservabilityAdmin::TelemetryRule", ObservabilityAdminTelemetryRuleProperties, ObservabilityAdminTelemetryRuleAttributes> {
|
|
144
|
+
static readonly Type = "AWS::ObservabilityAdmin::TelemetryRule";
|
|
145
|
+
constructor(logicalId: string, properties: ObservabilityAdminTelemetryRuleProperties, options?: $ResourceOptions);
|
|
146
|
+
}
|
|
147
|
+
//# sourceMappingURL=AWS-ObservabilityAdmin-TelemetryRule.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* The AWS::ObservabilityAdmin::TelemetryRule resource defines a CloudWatch Observability Admin Telemetry Rule.
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetryrule.html}
|
|
5
|
+
*/
|
|
6
|
+
export class ObservabilityAdminTelemetryRule extends $Resource {
|
|
7
|
+
static Type = "AWS::ObservabilityAdmin::TelemetryRule";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, ObservabilityAdminTelemetryRule.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-ObservabilityAdmin-TelemetryRule.js.map
|
|
@@ -78,6 +78,7 @@ export type OpenSearchServiceDomainAttributes = {
|
|
|
78
78
|
export type AdvancedSecurityOptionsInput = {
|
|
79
79
|
AnonymousAuthEnabled?: boolean;
|
|
80
80
|
Enabled?: boolean;
|
|
81
|
+
IAMFederationOptions?: IAMFederationOptions;
|
|
81
82
|
InternalUserDatabaseEnabled?: boolean;
|
|
82
83
|
JWTOptions?: JWTOptions;
|
|
83
84
|
MasterUserOptions?: MasterUserOptions;
|
|
@@ -149,6 +150,15 @@ export type EncryptionAtRestOptions = {
|
|
|
149
150
|
Enabled?: boolean;
|
|
150
151
|
KmsKeyId?: string;
|
|
151
152
|
};
|
|
153
|
+
/**
|
|
154
|
+
* Type definition for `AWS::OpenSearchService::Domain.IAMFederationOptions`.
|
|
155
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-iamfederationoptions.html}
|
|
156
|
+
*/
|
|
157
|
+
export type IAMFederationOptions = {
|
|
158
|
+
Enabled?: boolean;
|
|
159
|
+
RolesKey?: string;
|
|
160
|
+
SubjectKey?: string;
|
|
161
|
+
};
|
|
152
162
|
/**
|
|
153
163
|
* Type definition for `AWS::OpenSearchService::Domain.IdentityCenterOptions`.
|
|
154
164
|
* Options for configuring Identity Center
|
|
@@ -168,7 +168,7 @@ export type CastColumnTypeOperation = {
|
|
|
168
168
|
* @minLength `1`
|
|
169
169
|
* @maxLength `127`
|
|
170
170
|
*/
|
|
171
|
-
ColumnName
|
|
171
|
+
ColumnName?: string;
|
|
172
172
|
/**
|
|
173
173
|
* <p>When casting a column from string to datetime type, you can supply a string in a
|
|
174
174
|
format supported by Amazon QuickSight to denote the source data format.</p>
|
|
@@ -271,7 +271,7 @@ export type CreateColumnsOperation = {
|
|
|
271
271
|
/**
|
|
272
272
|
* <p>Calculated columns to create.</p>
|
|
273
273
|
* @minLength `0`
|
|
274
|
-
* @maxLength `
|
|
274
|
+
* @maxLength `256`
|
|
275
275
|
*/
|
|
276
276
|
Columns?: CalculatedColumn[];
|
|
277
277
|
};
|
|
@@ -283,7 +283,7 @@ export type CreateColumnsOperation = {
|
|
|
283
283
|
export type CustomSql = {
|
|
284
284
|
/**
|
|
285
285
|
* <p>The column schema from the SQL query result set.</p>
|
|
286
|
-
* @minLength `
|
|
286
|
+
* @minLength `0`
|
|
287
287
|
* @maxLength `2048`
|
|
288
288
|
*/
|
|
289
289
|
Columns?: InputColumn[];
|
|
@@ -489,7 +489,7 @@ export type FilterOperation = {
|
|
|
489
489
|
* @minLength `1`
|
|
490
490
|
* @maxLength `4096`
|
|
491
491
|
*/
|
|
492
|
-
ConditionExpression
|
|
492
|
+
ConditionExpression?: string;
|
|
493
493
|
};
|
|
494
494
|
/**
|
|
495
495
|
* Type definition for `AWS::QuickSight::DataSet.GeoSpatialColumnGroup`.
|
|
@@ -866,7 +866,7 @@ export type ProjectOperation = {
|
|
|
866
866
|
* @minLength `0`
|
|
867
867
|
* @maxLength `2000`
|
|
868
868
|
*/
|
|
869
|
-
ProjectedColumns
|
|
869
|
+
ProjectedColumns?: string[];
|
|
870
870
|
};
|
|
871
871
|
/**
|
|
872
872
|
* Type definition for `AWS::QuickSight::DataSet.RefreshConfiguration`.
|
|
@@ -916,7 +916,7 @@ export type RelationalTable = {
|
|
|
916
916
|
DataSourceArn: string;
|
|
917
917
|
/**
|
|
918
918
|
* <p>The column schema of the table.</p>
|
|
919
|
-
* @minLength `
|
|
919
|
+
* @minLength `0`
|
|
920
920
|
* @maxLength `2048`
|
|
921
921
|
*/
|
|
922
922
|
InputColumns?: InputColumn[];
|
|
@@ -944,7 +944,7 @@ export type RenameColumnOperation = {
|
|
|
944
944
|
* @minLength `1`
|
|
945
945
|
* @maxLength `127`
|
|
946
946
|
*/
|
|
947
|
-
ColumnName
|
|
947
|
+
ColumnName?: string;
|
|
948
948
|
/**
|
|
949
949
|
* <p>The new name for the column.</p>
|
|
950
950
|
* @minLength `1`
|
|
@@ -1050,7 +1050,7 @@ export type RowLevelPermissionTagRule = {
|
|
|
1050
1050
|
/**
|
|
1051
1051
|
* <p>The column name that a tag key is assigned to.</p>
|
|
1052
1052
|
*/
|
|
1053
|
-
ColumnName
|
|
1053
|
+
ColumnName?: string;
|
|
1054
1054
|
/**
|
|
1055
1055
|
* <p>A string that you want to use to filter by all the values in a column in the dataset and don’t want to list the values one by one. For example, you can use an asterisk as your match all value.</p>
|
|
1056
1056
|
* @minLength `1`
|
|
@@ -1085,7 +1085,7 @@ export type S3Source = {
|
|
|
1085
1085
|
<note>
|
|
1086
1086
|
<p>For files that aren't JSON, only <code>STRING</code> data types are supported in input columns.</p>
|
|
1087
1087
|
</note>
|
|
1088
|
-
* @minLength `
|
|
1088
|
+
* @minLength `0`
|
|
1089
1089
|
* @maxLength `2048`
|
|
1090
1090
|
*/
|
|
1091
1091
|
InputColumns?: InputColumn[];
|
|
@@ -1241,7 +1241,7 @@ export type UniqueKey = {
|
|
|
1241
1241
|
* @minLength `1`
|
|
1242
1242
|
* @maxLength `1`
|
|
1243
1243
|
*/
|
|
1244
|
-
ColumnNames
|
|
1244
|
+
ColumnNames?: string[];
|
|
1245
1245
|
};
|
|
1246
1246
|
/**
|
|
1247
1247
|
* Type definition for `AWS::QuickSight::DataSet.UntagColumnOperation`.
|
|
@@ -17,6 +17,10 @@ export type SageMakerClusterProperties = {
|
|
|
17
17
|
* @minLength `1`
|
|
18
18
|
*/
|
|
19
19
|
InstanceGroups?: ClusterInstanceGroup[];
|
|
20
|
+
/**
|
|
21
|
+
* Determines the scaling strategy for the SageMaker HyperPod cluster. When set to 'Continuous', enables continuous scaling which dynamically manages node provisioning. If the parameter is omitted, uses the standard scaling approach in previous release.
|
|
22
|
+
*/
|
|
23
|
+
NodeProvisioningMode?: "Continuous";
|
|
20
24
|
/**
|
|
21
25
|
* If node auto-recovery is set to true, faulty nodes will be replaced or rebooted when a failure is detected. If set to false, nodes will be labelled when a fault is detected.
|
|
22
26
|
*/
|
|
@@ -112,6 +116,13 @@ export type ClusterInstanceGroup = {
|
|
|
112
116
|
* @pattern `^arn:aws[a-z\-]*:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+$`
|
|
113
117
|
*/
|
|
114
118
|
ExecutionRole: string;
|
|
119
|
+
/**
|
|
120
|
+
* AMI Id to be used for launching EC2 instances - HyperPodPublicAmiId or CustomAmiId
|
|
121
|
+
* @minLength `12`
|
|
122
|
+
* @maxLength `21`
|
|
123
|
+
* @pattern `^ami-[0-9a-fA-F]{8,17}|default$`
|
|
124
|
+
*/
|
|
125
|
+
ImageId?: string;
|
|
115
126
|
/**
|
|
116
127
|
* The number of instances you specified to add to the instance group of a SageMaker HyperPod cluster.
|
|
117
128
|
* @min `0`
|
|
@@ -710,11 +710,6 @@ export type UnifiedStudioSettings = {
|
|
|
710
710
|
* @pattern `[\w\.-]+$`
|
|
711
711
|
*/
|
|
712
712
|
ProjectS3Path?: string;
|
|
713
|
-
/**
|
|
714
|
-
* The ARN of the DataZone application managed by SageMaker Unified Studio in the AWS IAM Identity Center.
|
|
715
|
-
* @pattern `^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):sso::[0-9]+:application/[a-zA-Z0-9-_.]+/apl-[a-zA-Z0-9]+$`
|
|
716
|
-
*/
|
|
717
|
-
SingleSignOnApplicationArn?: string;
|
|
718
713
|
/**
|
|
719
714
|
* Sets whether you can access the domain in Amazon SageMaker Studio:
|
|
720
715
|
|