@awboost/cfn-resource-types 0.1.267 → 0.1.268
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.
|
@@ -24,7 +24,15 @@ export type MediaPackageV2ChannelProperties = {
|
|
|
24
24
|
* @maxLength `1024`
|
|
25
25
|
*/
|
|
26
26
|
Description?: string;
|
|
27
|
+
/**
|
|
28
|
+
* <p>The configuration for input switching based on the media quality confidence score (MQCS) as provided from AWS Elemental MediaLive.</p>
|
|
29
|
+
*/
|
|
30
|
+
InputSwitchConfiguration?: InputSwitchConfiguration;
|
|
27
31
|
InputType?: InputType;
|
|
32
|
+
/**
|
|
33
|
+
* <p>The settings for what common media server data (CMSD) headers AWS Elemental MediaPackage includes in responses to the CDN.</p>
|
|
34
|
+
*/
|
|
35
|
+
OutputHeaderConfiguration?: OutputHeaderConfiguration;
|
|
28
36
|
Tags?: Tag[];
|
|
29
37
|
};
|
|
30
38
|
/**
|
|
@@ -74,11 +82,33 @@ export type IngestEndpoint = {
|
|
|
74
82
|
*/
|
|
75
83
|
Url?: string;
|
|
76
84
|
};
|
|
85
|
+
/**
|
|
86
|
+
* Type definition for `AWS::MediaPackageV2::Channel.InputSwitchConfiguration`.
|
|
87
|
+
* <p>The configuration for input switching based on the media quality confidence score (MQCS) as provided from AWS Elemental MediaLive.</p>
|
|
88
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-channel-inputswitchconfiguration.html}
|
|
89
|
+
*/
|
|
90
|
+
export type InputSwitchConfiguration = {
|
|
91
|
+
/**
|
|
92
|
+
* <p>When true, AWS Elemental MediaPackage performs input switching based on the MQCS. Default is true. This setting is valid only when <code>InputType</code> is <code>CMAF</code>.</p>
|
|
93
|
+
*/
|
|
94
|
+
MQCSInputSwitching?: boolean;
|
|
95
|
+
};
|
|
77
96
|
/**
|
|
78
97
|
* Type definition for `AWS::MediaPackageV2::Channel.InputType`.
|
|
79
98
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-channel-inputtype.html}
|
|
80
99
|
*/
|
|
81
100
|
export type InputType = "HLS" | "CMAF";
|
|
101
|
+
/**
|
|
102
|
+
* Type definition for `AWS::MediaPackageV2::Channel.OutputHeaderConfiguration`.
|
|
103
|
+
* <p>The settings for what common media server data (CMSD) headers AWS Elemental MediaPackage includes in responses to the CDN.</p>
|
|
104
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-channel-outputheaderconfiguration.html}
|
|
105
|
+
*/
|
|
106
|
+
export type OutputHeaderConfiguration = {
|
|
107
|
+
/**
|
|
108
|
+
* <p>When true, AWS Elemental MediaPackage includes the MQCS in responses to the CDN. This setting is valid only when <code>InputType</code> is <code>CMAF</code>.</p>
|
|
109
|
+
*/
|
|
110
|
+
PublishMQCS?: boolean;
|
|
111
|
+
};
|
|
82
112
|
/**
|
|
83
113
|
* Type definition for `AWS::MediaPackageV2::Channel.Tag`.
|
|
84
114
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediapackagev2-channel-tag.html}
|
|
@@ -59,12 +59,14 @@ export type AIAgentConfiguration = {
|
|
|
59
59
|
AnswerRecommendationAIAgentConfiguration: AnswerRecommendationAIAgentConfiguration;
|
|
60
60
|
} | {
|
|
61
61
|
SelfServiceAIAgentConfiguration: SelfServiceAIAgentConfiguration;
|
|
62
|
+
} | {
|
|
63
|
+
SessionSummarizationAIAgentConfiguration: SessionSummarizationAIAgentConfiguration;
|
|
62
64
|
};
|
|
63
65
|
/**
|
|
64
66
|
* Type definition for `AWS::Wisdom::AIAgent.AIAgentType`.
|
|
65
67
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-aiagenttype.html}
|
|
66
68
|
*/
|
|
67
|
-
export type AIAgentType = "MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE";
|
|
69
|
+
export type AIAgentType = "MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE" | "SESSION_SUMMARIZATION";
|
|
68
70
|
/**
|
|
69
71
|
* Type definition for `AWS::Wisdom::AIAgent.AnswerRecommendationAIAgentConfiguration`.
|
|
70
72
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-answerrecommendationaiagentconfiguration.html}
|
|
@@ -83,6 +85,10 @@ export type AnswerRecommendationAIAgentConfiguration = {
|
|
|
83
85
|
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
|
84
86
|
*/
|
|
85
87
|
IntentLabelingGenerationAIPromptId?: string;
|
|
88
|
+
/**
|
|
89
|
+
* @minLength `1`
|
|
90
|
+
*/
|
|
91
|
+
Locale?: string;
|
|
86
92
|
/**
|
|
87
93
|
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
|
88
94
|
*/
|
|
@@ -139,6 +145,10 @@ export type ManualSearchAIAgentConfiguration = {
|
|
|
139
145
|
*/
|
|
140
146
|
AnswerGenerationAIPromptId?: string;
|
|
141
147
|
AssociationConfigurations?: AssociationConfiguration[];
|
|
148
|
+
/**
|
|
149
|
+
* @minLength `1`
|
|
150
|
+
*/
|
|
151
|
+
Locale?: string;
|
|
142
152
|
};
|
|
143
153
|
/**
|
|
144
154
|
* Type definition for `AWS::Wisdom::AIAgent.OrCondition`.
|
|
@@ -168,6 +178,20 @@ export type SelfServiceAIAgentConfiguration = {
|
|
|
168
178
|
*/
|
|
169
179
|
SelfServicePreProcessingAIPromptId?: string;
|
|
170
180
|
};
|
|
181
|
+
/**
|
|
182
|
+
* Type definition for `AWS::Wisdom::AIAgent.SessionSummarizationAIAgentConfiguration`.
|
|
183
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-sessionsummarizationaiagentconfiguration.html}
|
|
184
|
+
*/
|
|
185
|
+
export type SessionSummarizationAIAgentConfiguration = {
|
|
186
|
+
/**
|
|
187
|
+
* @minLength `1`
|
|
188
|
+
*/
|
|
189
|
+
Locale?: string;
|
|
190
|
+
/**
|
|
191
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
|
192
|
+
*/
|
|
193
|
+
SessionSummarizationAIPromptId?: string;
|
|
194
|
+
};
|
|
171
195
|
/**
|
|
172
196
|
* Type definition for `AWS::Wisdom::AIAgent.TagCondition`.
|
|
173
197
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tagcondition.html}
|
|
@@ -72,7 +72,7 @@ export type AIPromptTemplateType = "TEXT";
|
|
|
72
72
|
* Type definition for `AWS::Wisdom::AIPrompt.AIPromptType`.
|
|
73
73
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiprompt-aiprompttype.html}
|
|
74
74
|
*/
|
|
75
|
-
export type AIPromptType = "ANSWER_GENERATION" | "INTENT_LABELING_GENERATION" | "QUERY_REFORMULATION" | "SELF_SERVICE_PRE_PROCESSING" | "SELF_SERVICE_ANSWER_GENERATION";
|
|
75
|
+
export type AIPromptType = "ANSWER_GENERATION" | "INTENT_LABELING_GENERATION" | "QUERY_REFORMULATION" | "SELF_SERVICE_PRE_PROCESSING" | "SELF_SERVICE_ANSWER_GENERATION" | "SESSION_SUMMARIZATION";
|
|
76
76
|
/**
|
|
77
77
|
* Type definition for `AWS::Wisdom::AIPrompt.Tags`.
|
|
78
78
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiprompt-tags.html}
|