@aws-sdk/client-observabilityadmin 3.1076.0 → 3.1077.0

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.
Files changed (31) hide show
  1. package/dist-cjs/index.js +14 -5
  2. package/dist-es/models/enums.js +6 -0
  3. package/dist-es/runtimeConfig.browser.js +0 -2
  4. package/dist-es/runtimeConfig.js +1 -2
  5. package/dist-es/runtimeConfig.native.js +0 -2
  6. package/dist-es/runtimeConfig.shared.js +2 -0
  7. package/dist-es/schemas/schemas_0.js +3 -2
  8. package/dist-types/commands/CreateTelemetryRuleCommand.d.ts +2 -2
  9. package/dist-types/commands/CreateTelemetryRuleForOrganizationCommand.d.ts +2 -2
  10. package/dist-types/commands/GetTelemetryRuleCommand.d.ts +2 -2
  11. package/dist-types/commands/GetTelemetryRuleForOrganizationCommand.d.ts +2 -2
  12. package/dist-types/commands/ListResourceTelemetryCommand.d.ts +2 -2
  13. package/dist-types/commands/ListResourceTelemetryForOrganizationCommand.d.ts +2 -2
  14. package/dist-types/commands/ListTelemetryRulesCommand.d.ts +1 -1
  15. package/dist-types/commands/ListTelemetryRulesForOrganizationCommand.d.ts +1 -1
  16. package/dist-types/commands/TestTelemetryPipelineCommand.d.ts +1 -0
  17. package/dist-types/commands/UpdateTelemetryRuleCommand.d.ts +2 -2
  18. package/dist-types/commands/UpdateTelemetryRuleForOrganizationCommand.d.ts +2 -2
  19. package/dist-types/models/enums.d.ts +20 -0
  20. package/dist-types/models/models_0.d.ts +6 -1
  21. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  22. package/dist-types/runtimeConfig.d.ts +1 -1
  23. package/dist-types/runtimeConfig.native.d.ts +1 -1
  24. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  25. package/dist-types/ts3.4/models/enums.d.ts +7 -0
  26. package/dist-types/ts3.4/models/models_0.d.ts +2 -0
  27. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
  28. package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
  29. package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
  30. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  31. package/package.json +6 -8
package/dist-cjs/index.js CHANGED
@@ -10,9 +10,10 @@ const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CON
10
10
  const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
11
11
  const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
12
12
  const { defaultProvider } = require("@aws-sdk/credential-provider-node");
13
- const { toUtf8, fromUtf8, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
13
+ const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
14
14
  const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
15
15
  const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
16
+ const { Sha256 } = require("@smithy/core/checksum");
16
17
 
17
18
  const defaultObservabilityAdminHttpAuthSchemeParametersProvider = async (config, context, input) => {
18
19
  return {
@@ -67,7 +68,7 @@ const commonParams = {
67
68
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
68
69
  };
69
70
 
70
- var version = "3.1075.0";
71
+ var version = "3.1076.0";
71
72
  var packageInfo = {
72
73
  version: version};
73
74
 
@@ -490,6 +491,7 @@ const _SMC = "SourceMetricsConfiguration";
490
491
  const _SOUI = "SourceOrganizationUnitIds";
491
492
  const _SQEE = "ServiceQuotaExceededException";
492
493
  const _SR = "StatusReason";
494
+ const _ST = "SignalType";
493
495
  const _STE = "StartTelemetryEnrichment";
494
496
  const _STEFO = "StartTelemetryEvaluationForOrganization";
495
497
  const _STEFOI = "StartTelemetryEvaluationForOrganizationInput";
@@ -1082,8 +1084,8 @@ var TelemetryRuleSummary$ = [3, n0, _TRSe,
1082
1084
  ];
1083
1085
  var TestTelemetryPipelineInput$ = [3, n0, _TTPI,
1084
1086
  0,
1085
- [_Reco, _Co],
1086
- [() => Records, () => TelemetryPipelineConfiguration$], 2
1087
+ [_Reco, _Co, _ST],
1088
+ [() => Records, () => TelemetryPipelineConfiguration$, 0], 2
1087
1089
  ];
1088
1090
  var TestTelemetryPipelineOutput$ = [3, n0, _TTPO,
1089
1091
  0,
@@ -1355,6 +1357,7 @@ const getRuntimeConfig$1 = (config) => {
1355
1357
  serviceTarget: "ObservabilityAdmin",
1356
1358
  },
1357
1359
  serviceId: config?.serviceId ?? "ObservabilityAdmin",
1360
+ sha256: config?.sha256 ?? Sha256,
1358
1361
  urlParser: config?.urlParser ?? parseUrl,
1359
1362
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1360
1363
  utf8Encoder: config?.utf8Encoder ?? toUtf8,
@@ -1388,7 +1391,6 @@ const getRuntimeConfig = (config) => {
1388
1391
  ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1389
1392
  default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1390
1393
  }, config),
1391
- sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
1392
1394
  streamCollector: config?.streamCollector ?? streamCollector,
1393
1395
  useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1394
1396
  useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
@@ -2070,6 +2072,7 @@ const LogType = {
2070
2072
  ACCESS: "ACCESS_LOGS",
2071
2073
  APPLICATION: "APPLICATION_LOGS",
2072
2074
  CONNECTION: "CONNECTION_LOGS",
2075
+ S3_SERVER_ACCESS: "S3_SERVER_ACCESS_LOGS",
2073
2076
  SECURITY_FINDING: "SECURITY_FINDING_LOGS",
2074
2077
  USAGE: "USAGE_LOGS",
2075
2078
  };
@@ -2107,6 +2110,7 @@ const ResourceType = {
2107
2110
  AWS_MSK_CLUSTER: "AWS::MSK::Cluster",
2108
2111
  AWS_OTEL_ENRICHMENT: "AWS::CloudWatch::OTelEnrichment",
2109
2112
  AWS_ROUTE53_RESOLVER_RESOLVER_ENDPOINT: "AWS::Route53Resolver::ResolverEndpoint",
2113
+ AWS_S3_BUCKET: "AWS::S3::Bucket",
2110
2114
  AWS_SECURITY_HUB: "AWS::SecurityHub::Hub",
2111
2115
  AWS_SECURITY_HUB_HUBV2: "AWS::SecurityHub::HubV2",
2112
2116
  AWS_WAF_V2_WEB_ACL: "AWS::WAFv2::WebACL",
@@ -2160,6 +2164,10 @@ const RecordFormat = {
2160
2164
  JSON: "JSON",
2161
2165
  STRING: "STRING",
2162
2166
  };
2167
+ const SignalType = {
2168
+ LOG: "LOG",
2169
+ METRIC: "METRIC",
2170
+ };
2163
2171
 
2164
2172
  exports.AccessDeniedException = AccessDeniedException;
2165
2173
  exports.AccessDeniedException$ = AccessDeniedException$;
@@ -2319,6 +2327,7 @@ exports.RuleHealth = RuleHealth;
2319
2327
  exports.SSEAlgorithm = SSEAlgorithm;
2320
2328
  exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2321
2329
  exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
2330
+ exports.SignalType = SignalType;
2322
2331
  exports.SingleHeader$ = SingleHeader$;
2323
2332
  exports.Source$ = Source$;
2324
2333
  exports.SourceLogsConfiguration$ = SourceLogsConfiguration$;
@@ -43,6 +43,7 @@ export const LogType = {
43
43
  ACCESS: "ACCESS_LOGS",
44
44
  APPLICATION: "APPLICATION_LOGS",
45
45
  CONNECTION: "CONNECTION_LOGS",
46
+ S3_SERVER_ACCESS: "S3_SERVER_ACCESS_LOGS",
46
47
  SECURITY_FINDING: "SECURITY_FINDING_LOGS",
47
48
  USAGE: "USAGE_LOGS",
48
49
  };
@@ -80,6 +81,7 @@ export const ResourceType = {
80
81
  AWS_MSK_CLUSTER: "AWS::MSK::Cluster",
81
82
  AWS_OTEL_ENRICHMENT: "AWS::CloudWatch::OTelEnrichment",
82
83
  AWS_ROUTE53_RESOLVER_RESOLVER_ENDPOINT: "AWS::Route53Resolver::ResolverEndpoint",
84
+ AWS_S3_BUCKET: "AWS::S3::Bucket",
83
85
  AWS_SECURITY_HUB: "AWS::SecurityHub::Hub",
84
86
  AWS_SECURITY_HUB_HUBV2: "AWS::SecurityHub::HubV2",
85
87
  AWS_WAF_V2_WEB_ACL: "AWS::WAFv2::WebACL",
@@ -133,3 +135,7 @@ export const RecordFormat = {
133
135
  JSON: "JSON",
134
136
  STRING: "STRING",
135
137
  };
138
+ export const SignalType = {
139
+ LOG: "LOG",
140
+ METRIC: "METRIC",
141
+ };
@@ -1,5 +1,4 @@
1
1
  import packageInfo from "../package.json";
2
- import { Sha256 } from "@aws-crypto/sha256-browser";
3
2
  import { createDefaultUserAgentProvider } from "@aws-sdk/core/client";
4
3
  import { invalidProvider, loadConfigsForDefaultMode } from "@smithy/core/client";
5
4
  import { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, resolveDefaultsModeConfig, } from "@smithy/core/config";
@@ -23,7 +22,6 @@ export const getRuntimeConfig = (config) => {
23
22
  region: config?.region ?? invalidProvider("Region is missing"),
24
23
  requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
25
24
  retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE),
26
- sha256: config?.sha256 ?? Sha256,
27
25
  streamCollector: config?.streamCollector ?? streamCollector,
28
26
  useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT)),
29
27
  useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT)),
@@ -5,7 +5,7 @@ import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credentia
5
5
  import { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } from "@smithy/core/client";
6
6
  import { loadConfig as loadNodeConfig, NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, resolveDefaultsModeConfig, } from "@smithy/core/config";
7
7
  import { DEFAULT_RETRY_MODE, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS, } from "@smithy/core/retry";
8
- import { calculateBodyLength, Hash } from "@smithy/core/serde";
8
+ import { calculateBodyLength } from "@smithy/core/serde";
9
9
  import { NodeHttpHandler as RequestHandler, streamCollector } from "@smithy/node-http-handler";
10
10
  import { getRuntimeConfig as getSharedRuntimeConfig } from "./runtimeConfig.shared";
11
11
  export const getRuntimeConfig = (config) => {
@@ -35,7 +35,6 @@ export const getRuntimeConfig = (config) => {
35
35
  ...NODE_RETRY_MODE_CONFIG_OPTIONS,
36
36
  default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
37
37
  }, config),
38
- sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
39
38
  streamCollector: config?.streamCollector ?? streamCollector,
40
39
  useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
41
40
  useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
@@ -1,4 +1,3 @@
1
- import { Sha256 } from "@aws-crypto/sha256-js";
2
1
  import { getRuntimeConfig as getBrowserRuntimeConfig } from "./runtimeConfig.browser";
3
2
  export const getRuntimeConfig = (config) => {
4
3
  const browserDefaults = getBrowserRuntimeConfig(config);
@@ -6,6 +5,5 @@ export const getRuntimeConfig = (config) => {
6
5
  ...browserDefaults,
7
6
  ...config,
8
7
  runtime: "react-native",
9
- sha256: config?.sha256 ?? Sha256,
10
8
  };
11
9
  };
@@ -1,5 +1,6 @@
1
1
  import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
2
2
  import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
3
+ import { Sha256 } from "@smithy/core/checksum";
3
4
  import { NoOpLogger } from "@smithy/core/client";
4
5
  import { parseUrl } from "@smithy/core/protocols";
5
6
  import { fromBase64, fromUtf8, toBase64, toUtf8 } from "@smithy/core/serde";
@@ -31,6 +32,7 @@ export const getRuntimeConfig = (config) => {
31
32
  serviceTarget: "ObservabilityAdmin",
32
33
  },
33
34
  serviceId: config?.serviceId ?? "ObservabilityAdmin",
35
+ sha256: config?.sha256 ?? Sha256,
34
36
  urlParser: config?.urlParser ?? parseUrl,
35
37
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,
36
38
  utf8Encoder: config?.utf8Encoder ?? toUtf8,
@@ -213,6 +213,7 @@ const _SMC = "SourceMetricsConfiguration";
213
213
  const _SOUI = "SourceOrganizationUnitIds";
214
214
  const _SQEE = "ServiceQuotaExceededException";
215
215
  const _SR = "StatusReason";
216
+ const _ST = "SignalType";
216
217
  const _STE = "StartTelemetryEnrichment";
217
218
  const _STEFO = "StartTelemetryEvaluationForOrganization";
218
219
  const _STEFOI = "StartTelemetryEvaluationForOrganizationInput";
@@ -808,8 +809,8 @@ export var TelemetryRuleSummary$ = [3, n0, _TRSe,
808
809
  ];
809
810
  export var TestTelemetryPipelineInput$ = [3, n0, _TTPI,
810
811
  0,
811
- [_Reco, _Co],
812
- [() => Records, () => TelemetryPipelineConfiguration$], 2
812
+ [_Reco, _Co, _ST],
813
+ [() => Records, () => TelemetryPipelineConfiguration$, 0], 2
813
814
  ];
814
815
  export var TestTelemetryPipelineOutput$ = [3, n0, _TTPO,
815
816
  0,
@@ -41,7 +41,7 @@ declare const CreateTelemetryRuleCommand_base: {
41
41
  * const input = { // CreateTelemetryRuleInput
42
42
  * RuleName: "STRING_VALUE", // required
43
43
  * Rule: { // TelemetryRule
44
- * ResourceType: "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function" || "AWS::CloudTrail" || "AWS::EKS::Cluster" || "AWS::WAFv2::WebACL" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::BedrockAgentCore::Runtime" || "AWS::BedrockAgentCore::Browser" || "AWS::BedrockAgentCore::CodeInterpreter" || "AWS::BedrockAgentCore::Gateway" || "AWS::BedrockAgentCore::Memory" || "AWS::BedrockAgentCore::WorkloadIdentity" || "AWS::SecurityHub::Hub" || "AWS::CloudFront::Distribution" || "AWS::SecurityHub::HubV2" || "AWS::CloudWatch::OTelEnrichment" || "AWS::MSK::Cluster",
44
+ * ResourceType: "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function" || "AWS::CloudTrail" || "AWS::EKS::Cluster" || "AWS::WAFv2::WebACL" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::BedrockAgentCore::Runtime" || "AWS::BedrockAgentCore::Browser" || "AWS::BedrockAgentCore::CodeInterpreter" || "AWS::BedrockAgentCore::Gateway" || "AWS::BedrockAgentCore::Memory" || "AWS::BedrockAgentCore::WorkloadIdentity" || "AWS::SecurityHub::Hub" || "AWS::CloudFront::Distribution" || "AWS::SecurityHub::HubV2" || "AWS::CloudWatch::OTelEnrichment" || "AWS::MSK::Cluster" || "AWS::S3::Bucket",
45
45
  * TelemetryType: "Logs" || "Metrics" || "Traces", // required
46
46
  * TelemetrySourceTypes: [ // TelemetrySourceTypes
47
47
  * "VPC_FLOW_LOGS" || "ROUTE53_RESOLVER_QUERY_LOGS" || "EKS_AUDIT_LOGS" || "EKS_AUTHENTICATOR_LOGS" || "EKS_CONTROLLER_MANAGER_LOGS" || "EKS_SCHEDULER_LOGS" || "EKS_API_LOGS",
@@ -121,7 +121,7 @@ declare const CreateTelemetryRuleCommand_base: {
121
121
  * },
122
122
  * LogDeliveryParameters: { // LogDeliveryParameters
123
123
  * LogTypes: [ // LogTypes
124
- * "APPLICATION_LOGS" || "USAGE_LOGS" || "SECURITY_FINDING_LOGS" || "ACCESS_LOGS" || "CONNECTION_LOGS",
124
+ * "APPLICATION_LOGS" || "USAGE_LOGS" || "SECURITY_FINDING_LOGS" || "ACCESS_LOGS" || "CONNECTION_LOGS" || "S3_SERVER_ACCESS_LOGS",
125
125
  * ],
126
126
  * },
127
127
  * MskMonitoringParameters: { // MskMonitoringParameters
@@ -41,7 +41,7 @@ declare const CreateTelemetryRuleForOrganizationCommand_base: {
41
41
  * const input = { // CreateTelemetryRuleForOrganizationInput
42
42
  * RuleName: "STRING_VALUE", // required
43
43
  * Rule: { // TelemetryRule
44
- * ResourceType: "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function" || "AWS::CloudTrail" || "AWS::EKS::Cluster" || "AWS::WAFv2::WebACL" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::BedrockAgentCore::Runtime" || "AWS::BedrockAgentCore::Browser" || "AWS::BedrockAgentCore::CodeInterpreter" || "AWS::BedrockAgentCore::Gateway" || "AWS::BedrockAgentCore::Memory" || "AWS::BedrockAgentCore::WorkloadIdentity" || "AWS::SecurityHub::Hub" || "AWS::CloudFront::Distribution" || "AWS::SecurityHub::HubV2" || "AWS::CloudWatch::OTelEnrichment" || "AWS::MSK::Cluster",
44
+ * ResourceType: "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function" || "AWS::CloudTrail" || "AWS::EKS::Cluster" || "AWS::WAFv2::WebACL" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::BedrockAgentCore::Runtime" || "AWS::BedrockAgentCore::Browser" || "AWS::BedrockAgentCore::CodeInterpreter" || "AWS::BedrockAgentCore::Gateway" || "AWS::BedrockAgentCore::Memory" || "AWS::BedrockAgentCore::WorkloadIdentity" || "AWS::SecurityHub::Hub" || "AWS::CloudFront::Distribution" || "AWS::SecurityHub::HubV2" || "AWS::CloudWatch::OTelEnrichment" || "AWS::MSK::Cluster" || "AWS::S3::Bucket",
45
45
  * TelemetryType: "Logs" || "Metrics" || "Traces", // required
46
46
  * TelemetrySourceTypes: [ // TelemetrySourceTypes
47
47
  * "VPC_FLOW_LOGS" || "ROUTE53_RESOLVER_QUERY_LOGS" || "EKS_AUDIT_LOGS" || "EKS_AUTHENTICATOR_LOGS" || "EKS_CONTROLLER_MANAGER_LOGS" || "EKS_SCHEDULER_LOGS" || "EKS_API_LOGS",
@@ -121,7 +121,7 @@ declare const CreateTelemetryRuleForOrganizationCommand_base: {
121
121
  * },
122
122
  * LogDeliveryParameters: { // LogDeliveryParameters
123
123
  * LogTypes: [ // LogTypes
124
- * "APPLICATION_LOGS" || "USAGE_LOGS" || "SECURITY_FINDING_LOGS" || "ACCESS_LOGS" || "CONNECTION_LOGS",
124
+ * "APPLICATION_LOGS" || "USAGE_LOGS" || "SECURITY_FINDING_LOGS" || "ACCESS_LOGS" || "CONNECTION_LOGS" || "S3_SERVER_ACCESS_LOGS",
125
125
  * ],
126
126
  * },
127
127
  * MskMonitoringParameters: { // MskMonitoringParameters
@@ -49,7 +49,7 @@ declare const GetTelemetryRuleCommand_base: {
49
49
  * // CreatedTimeStamp: Number("long"),
50
50
  * // LastUpdateTimeStamp: Number("long"),
51
51
  * // TelemetryRule: { // TelemetryRule
52
- * // ResourceType: "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function" || "AWS::CloudTrail" || "AWS::EKS::Cluster" || "AWS::WAFv2::WebACL" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::BedrockAgentCore::Runtime" || "AWS::BedrockAgentCore::Browser" || "AWS::BedrockAgentCore::CodeInterpreter" || "AWS::BedrockAgentCore::Gateway" || "AWS::BedrockAgentCore::Memory" || "AWS::BedrockAgentCore::WorkloadIdentity" || "AWS::SecurityHub::Hub" || "AWS::CloudFront::Distribution" || "AWS::SecurityHub::HubV2" || "AWS::CloudWatch::OTelEnrichment" || "AWS::MSK::Cluster",
52
+ * // ResourceType: "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function" || "AWS::CloudTrail" || "AWS::EKS::Cluster" || "AWS::WAFv2::WebACL" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::BedrockAgentCore::Runtime" || "AWS::BedrockAgentCore::Browser" || "AWS::BedrockAgentCore::CodeInterpreter" || "AWS::BedrockAgentCore::Gateway" || "AWS::BedrockAgentCore::Memory" || "AWS::BedrockAgentCore::WorkloadIdentity" || "AWS::SecurityHub::Hub" || "AWS::CloudFront::Distribution" || "AWS::SecurityHub::HubV2" || "AWS::CloudWatch::OTelEnrichment" || "AWS::MSK::Cluster" || "AWS::S3::Bucket",
53
53
  * // TelemetryType: "Logs" || "Metrics" || "Traces", // required
54
54
  * // TelemetrySourceTypes: [ // TelemetrySourceTypes
55
55
  * // "VPC_FLOW_LOGS" || "ROUTE53_RESOLVER_QUERY_LOGS" || "EKS_AUDIT_LOGS" || "EKS_AUTHENTICATOR_LOGS" || "EKS_CONTROLLER_MANAGER_LOGS" || "EKS_SCHEDULER_LOGS" || "EKS_API_LOGS",
@@ -129,7 +129,7 @@ declare const GetTelemetryRuleCommand_base: {
129
129
  * // },
130
130
  * // LogDeliveryParameters: { // LogDeliveryParameters
131
131
  * // LogTypes: [ // LogTypes
132
- * // "APPLICATION_LOGS" || "USAGE_LOGS" || "SECURITY_FINDING_LOGS" || "ACCESS_LOGS" || "CONNECTION_LOGS",
132
+ * // "APPLICATION_LOGS" || "USAGE_LOGS" || "SECURITY_FINDING_LOGS" || "ACCESS_LOGS" || "CONNECTION_LOGS" || "S3_SERVER_ACCESS_LOGS",
133
133
  * // ],
134
134
  * // },
135
135
  * // MskMonitoringParameters: { // MskMonitoringParameters
@@ -49,7 +49,7 @@ declare const GetTelemetryRuleForOrganizationCommand_base: {
49
49
  * // CreatedTimeStamp: Number("long"),
50
50
  * // LastUpdateTimeStamp: Number("long"),
51
51
  * // TelemetryRule: { // TelemetryRule
52
- * // ResourceType: "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function" || "AWS::CloudTrail" || "AWS::EKS::Cluster" || "AWS::WAFv2::WebACL" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::BedrockAgentCore::Runtime" || "AWS::BedrockAgentCore::Browser" || "AWS::BedrockAgentCore::CodeInterpreter" || "AWS::BedrockAgentCore::Gateway" || "AWS::BedrockAgentCore::Memory" || "AWS::BedrockAgentCore::WorkloadIdentity" || "AWS::SecurityHub::Hub" || "AWS::CloudFront::Distribution" || "AWS::SecurityHub::HubV2" || "AWS::CloudWatch::OTelEnrichment" || "AWS::MSK::Cluster",
52
+ * // ResourceType: "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function" || "AWS::CloudTrail" || "AWS::EKS::Cluster" || "AWS::WAFv2::WebACL" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::BedrockAgentCore::Runtime" || "AWS::BedrockAgentCore::Browser" || "AWS::BedrockAgentCore::CodeInterpreter" || "AWS::BedrockAgentCore::Gateway" || "AWS::BedrockAgentCore::Memory" || "AWS::BedrockAgentCore::WorkloadIdentity" || "AWS::SecurityHub::Hub" || "AWS::CloudFront::Distribution" || "AWS::SecurityHub::HubV2" || "AWS::CloudWatch::OTelEnrichment" || "AWS::MSK::Cluster" || "AWS::S3::Bucket",
53
53
  * // TelemetryType: "Logs" || "Metrics" || "Traces", // required
54
54
  * // TelemetrySourceTypes: [ // TelemetrySourceTypes
55
55
  * // "VPC_FLOW_LOGS" || "ROUTE53_RESOLVER_QUERY_LOGS" || "EKS_AUDIT_LOGS" || "EKS_AUTHENTICATOR_LOGS" || "EKS_CONTROLLER_MANAGER_LOGS" || "EKS_SCHEDULER_LOGS" || "EKS_API_LOGS",
@@ -129,7 +129,7 @@ declare const GetTelemetryRuleForOrganizationCommand_base: {
129
129
  * // },
130
130
  * // LogDeliveryParameters: { // LogDeliveryParameters
131
131
  * // LogTypes: [ // LogTypes
132
- * // "APPLICATION_LOGS" || "USAGE_LOGS" || "SECURITY_FINDING_LOGS" || "ACCESS_LOGS" || "CONNECTION_LOGS",
132
+ * // "APPLICATION_LOGS" || "USAGE_LOGS" || "SECURITY_FINDING_LOGS" || "ACCESS_LOGS" || "CONNECTION_LOGS" || "S3_SERVER_ACCESS_LOGS",
133
133
  * // ],
134
134
  * // },
135
135
  * // MskMonitoringParameters: { // MskMonitoringParameters
@@ -41,7 +41,7 @@ declare const ListResourceTelemetryCommand_base: {
41
41
  * const input = { // ListResourceTelemetryInput
42
42
  * ResourceIdentifierPrefix: "STRING_VALUE",
43
43
  * ResourceTypes: [ // ResourceTypes
44
- * "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function" || "AWS::CloudTrail" || "AWS::EKS::Cluster" || "AWS::WAFv2::WebACL" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::BedrockAgentCore::Runtime" || "AWS::BedrockAgentCore::Browser" || "AWS::BedrockAgentCore::CodeInterpreter" || "AWS::BedrockAgentCore::Gateway" || "AWS::BedrockAgentCore::Memory" || "AWS::BedrockAgentCore::WorkloadIdentity" || "AWS::SecurityHub::Hub" || "AWS::CloudFront::Distribution" || "AWS::SecurityHub::HubV2" || "AWS::CloudWatch::OTelEnrichment" || "AWS::MSK::Cluster",
44
+ * "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function" || "AWS::CloudTrail" || "AWS::EKS::Cluster" || "AWS::WAFv2::WebACL" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::BedrockAgentCore::Runtime" || "AWS::BedrockAgentCore::Browser" || "AWS::BedrockAgentCore::CodeInterpreter" || "AWS::BedrockAgentCore::Gateway" || "AWS::BedrockAgentCore::Memory" || "AWS::BedrockAgentCore::WorkloadIdentity" || "AWS::SecurityHub::Hub" || "AWS::CloudFront::Distribution" || "AWS::SecurityHub::HubV2" || "AWS::CloudWatch::OTelEnrichment" || "AWS::MSK::Cluster" || "AWS::S3::Bucket",
45
45
  * ],
46
46
  * TelemetryConfigurationState: { // TelemetryConfigurationState
47
47
  * "<keys>": "Enabled" || "Disabled" || "NotApplicable",
@@ -61,7 +61,7 @@ declare const ListResourceTelemetryCommand_base: {
61
61
  * // TelemetryConfigurationState: { // TelemetryConfigurationState
62
62
  * // "<keys>": "Enabled" || "Disabled" || "NotApplicable",
63
63
  * // },
64
- * // ResourceType: "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function" || "AWS::CloudTrail" || "AWS::EKS::Cluster" || "AWS::WAFv2::WebACL" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::BedrockAgentCore::Runtime" || "AWS::BedrockAgentCore::Browser" || "AWS::BedrockAgentCore::CodeInterpreter" || "AWS::BedrockAgentCore::Gateway" || "AWS::BedrockAgentCore::Memory" || "AWS::BedrockAgentCore::WorkloadIdentity" || "AWS::SecurityHub::Hub" || "AWS::CloudFront::Distribution" || "AWS::SecurityHub::HubV2" || "AWS::CloudWatch::OTelEnrichment" || "AWS::MSK::Cluster",
64
+ * // ResourceType: "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function" || "AWS::CloudTrail" || "AWS::EKS::Cluster" || "AWS::WAFv2::WebACL" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::BedrockAgentCore::Runtime" || "AWS::BedrockAgentCore::Browser" || "AWS::BedrockAgentCore::CodeInterpreter" || "AWS::BedrockAgentCore::Gateway" || "AWS::BedrockAgentCore::Memory" || "AWS::BedrockAgentCore::WorkloadIdentity" || "AWS::SecurityHub::Hub" || "AWS::CloudFront::Distribution" || "AWS::SecurityHub::HubV2" || "AWS::CloudWatch::OTelEnrichment" || "AWS::MSK::Cluster" || "AWS::S3::Bucket",
65
65
  * // ResourceIdentifier: "STRING_VALUE",
66
66
  * // ResourceTags: { // TagMapOutput
67
67
  * // "<keys>": "STRING_VALUE",
@@ -44,7 +44,7 @@ declare const ListResourceTelemetryForOrganizationCommand_base: {
44
44
  * ],
45
45
  * ResourceIdentifierPrefix: "STRING_VALUE",
46
46
  * ResourceTypes: [ // ResourceTypes
47
- * "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function" || "AWS::CloudTrail" || "AWS::EKS::Cluster" || "AWS::WAFv2::WebACL" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::BedrockAgentCore::Runtime" || "AWS::BedrockAgentCore::Browser" || "AWS::BedrockAgentCore::CodeInterpreter" || "AWS::BedrockAgentCore::Gateway" || "AWS::BedrockAgentCore::Memory" || "AWS::BedrockAgentCore::WorkloadIdentity" || "AWS::SecurityHub::Hub" || "AWS::CloudFront::Distribution" || "AWS::SecurityHub::HubV2" || "AWS::CloudWatch::OTelEnrichment" || "AWS::MSK::Cluster",
47
+ * "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function" || "AWS::CloudTrail" || "AWS::EKS::Cluster" || "AWS::WAFv2::WebACL" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::BedrockAgentCore::Runtime" || "AWS::BedrockAgentCore::Browser" || "AWS::BedrockAgentCore::CodeInterpreter" || "AWS::BedrockAgentCore::Gateway" || "AWS::BedrockAgentCore::Memory" || "AWS::BedrockAgentCore::WorkloadIdentity" || "AWS::SecurityHub::Hub" || "AWS::CloudFront::Distribution" || "AWS::SecurityHub::HubV2" || "AWS::CloudWatch::OTelEnrichment" || "AWS::MSK::Cluster" || "AWS::S3::Bucket",
48
48
  * ],
49
49
  * TelemetryConfigurationState: { // TelemetryConfigurationState
50
50
  * "<keys>": "Enabled" || "Disabled" || "NotApplicable",
@@ -64,7 +64,7 @@ declare const ListResourceTelemetryForOrganizationCommand_base: {
64
64
  * // TelemetryConfigurationState: { // TelemetryConfigurationState
65
65
  * // "<keys>": "Enabled" || "Disabled" || "NotApplicable",
66
66
  * // },
67
- * // ResourceType: "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function" || "AWS::CloudTrail" || "AWS::EKS::Cluster" || "AWS::WAFv2::WebACL" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::BedrockAgentCore::Runtime" || "AWS::BedrockAgentCore::Browser" || "AWS::BedrockAgentCore::CodeInterpreter" || "AWS::BedrockAgentCore::Gateway" || "AWS::BedrockAgentCore::Memory" || "AWS::BedrockAgentCore::WorkloadIdentity" || "AWS::SecurityHub::Hub" || "AWS::CloudFront::Distribution" || "AWS::SecurityHub::HubV2" || "AWS::CloudWatch::OTelEnrichment" || "AWS::MSK::Cluster",
67
+ * // ResourceType: "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function" || "AWS::CloudTrail" || "AWS::EKS::Cluster" || "AWS::WAFv2::WebACL" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::BedrockAgentCore::Runtime" || "AWS::BedrockAgentCore::Browser" || "AWS::BedrockAgentCore::CodeInterpreter" || "AWS::BedrockAgentCore::Gateway" || "AWS::BedrockAgentCore::Memory" || "AWS::BedrockAgentCore::WorkloadIdentity" || "AWS::SecurityHub::Hub" || "AWS::CloudFront::Distribution" || "AWS::SecurityHub::HubV2" || "AWS::CloudWatch::OTelEnrichment" || "AWS::MSK::Cluster" || "AWS::S3::Bucket",
68
68
  * // ResourceIdentifier: "STRING_VALUE",
69
69
  * // ResourceTags: { // TagMapOutput
70
70
  * // "<keys>": "STRING_VALUE",
@@ -52,7 +52,7 @@ declare const ListTelemetryRulesCommand_base: {
52
52
  * // RuleArn: "STRING_VALUE",
53
53
  * // CreatedTimeStamp: Number("long"),
54
54
  * // LastUpdateTimeStamp: Number("long"),
55
- * // ResourceType: "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function" || "AWS::CloudTrail" || "AWS::EKS::Cluster" || "AWS::WAFv2::WebACL" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::BedrockAgentCore::Runtime" || "AWS::BedrockAgentCore::Browser" || "AWS::BedrockAgentCore::CodeInterpreter" || "AWS::BedrockAgentCore::Gateway" || "AWS::BedrockAgentCore::Memory" || "AWS::BedrockAgentCore::WorkloadIdentity" || "AWS::SecurityHub::Hub" || "AWS::CloudFront::Distribution" || "AWS::SecurityHub::HubV2" || "AWS::CloudWatch::OTelEnrichment" || "AWS::MSK::Cluster",
55
+ * // ResourceType: "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function" || "AWS::CloudTrail" || "AWS::EKS::Cluster" || "AWS::WAFv2::WebACL" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::BedrockAgentCore::Runtime" || "AWS::BedrockAgentCore::Browser" || "AWS::BedrockAgentCore::CodeInterpreter" || "AWS::BedrockAgentCore::Gateway" || "AWS::BedrockAgentCore::Memory" || "AWS::BedrockAgentCore::WorkloadIdentity" || "AWS::SecurityHub::Hub" || "AWS::CloudFront::Distribution" || "AWS::SecurityHub::HubV2" || "AWS::CloudWatch::OTelEnrichment" || "AWS::MSK::Cluster" || "AWS::S3::Bucket",
56
56
  * // TelemetryType: "Logs" || "Metrics" || "Traces",
57
57
  * // TelemetrySourceTypes: [ // TelemetrySourceTypes
58
58
  * // "VPC_FLOW_LOGS" || "ROUTE53_RESOLVER_QUERY_LOGS" || "EKS_AUDIT_LOGS" || "EKS_AUTHENTICATOR_LOGS" || "EKS_CONTROLLER_MANAGER_LOGS" || "EKS_SCHEDULER_LOGS" || "EKS_API_LOGS",
@@ -58,7 +58,7 @@ declare const ListTelemetryRulesForOrganizationCommand_base: {
58
58
  * // RuleArn: "STRING_VALUE",
59
59
  * // CreatedTimeStamp: Number("long"),
60
60
  * // LastUpdateTimeStamp: Number("long"),
61
- * // ResourceType: "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function" || "AWS::CloudTrail" || "AWS::EKS::Cluster" || "AWS::WAFv2::WebACL" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::BedrockAgentCore::Runtime" || "AWS::BedrockAgentCore::Browser" || "AWS::BedrockAgentCore::CodeInterpreter" || "AWS::BedrockAgentCore::Gateway" || "AWS::BedrockAgentCore::Memory" || "AWS::BedrockAgentCore::WorkloadIdentity" || "AWS::SecurityHub::Hub" || "AWS::CloudFront::Distribution" || "AWS::SecurityHub::HubV2" || "AWS::CloudWatch::OTelEnrichment" || "AWS::MSK::Cluster",
61
+ * // ResourceType: "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function" || "AWS::CloudTrail" || "AWS::EKS::Cluster" || "AWS::WAFv2::WebACL" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::BedrockAgentCore::Runtime" || "AWS::BedrockAgentCore::Browser" || "AWS::BedrockAgentCore::CodeInterpreter" || "AWS::BedrockAgentCore::Gateway" || "AWS::BedrockAgentCore::Memory" || "AWS::BedrockAgentCore::WorkloadIdentity" || "AWS::SecurityHub::Hub" || "AWS::CloudFront::Distribution" || "AWS::SecurityHub::HubV2" || "AWS::CloudWatch::OTelEnrichment" || "AWS::MSK::Cluster" || "AWS::S3::Bucket",
62
62
  * // TelemetryType: "Logs" || "Metrics" || "Traces",
63
63
  * // TelemetrySourceTypes: [ // TelemetrySourceTypes
64
64
  * // "VPC_FLOW_LOGS" || "ROUTE53_RESOLVER_QUERY_LOGS" || "EKS_AUDIT_LOGS" || "EKS_AUTHENTICATOR_LOGS" || "EKS_CONTROLLER_MANAGER_LOGS" || "EKS_SCHEDULER_LOGS" || "EKS_API_LOGS",
@@ -48,6 +48,7 @@ declare const TestTelemetryPipelineCommand_base: {
48
48
  * Configuration: { // TelemetryPipelineConfiguration
49
49
  * Body: "STRING_VALUE", // required
50
50
  * },
51
+ * SignalType: "LOG" || "METRIC",
51
52
  * };
52
53
  * const command = new TestTelemetryPipelineCommand(input);
53
54
  * const response = await client.send(command);
@@ -41,7 +41,7 @@ declare const UpdateTelemetryRuleCommand_base: {
41
41
  * const input = { // UpdateTelemetryRuleInput
42
42
  * RuleIdentifier: "STRING_VALUE", // required
43
43
  * Rule: { // TelemetryRule
44
- * ResourceType: "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function" || "AWS::CloudTrail" || "AWS::EKS::Cluster" || "AWS::WAFv2::WebACL" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::BedrockAgentCore::Runtime" || "AWS::BedrockAgentCore::Browser" || "AWS::BedrockAgentCore::CodeInterpreter" || "AWS::BedrockAgentCore::Gateway" || "AWS::BedrockAgentCore::Memory" || "AWS::BedrockAgentCore::WorkloadIdentity" || "AWS::SecurityHub::Hub" || "AWS::CloudFront::Distribution" || "AWS::SecurityHub::HubV2" || "AWS::CloudWatch::OTelEnrichment" || "AWS::MSK::Cluster",
44
+ * ResourceType: "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function" || "AWS::CloudTrail" || "AWS::EKS::Cluster" || "AWS::WAFv2::WebACL" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::BedrockAgentCore::Runtime" || "AWS::BedrockAgentCore::Browser" || "AWS::BedrockAgentCore::CodeInterpreter" || "AWS::BedrockAgentCore::Gateway" || "AWS::BedrockAgentCore::Memory" || "AWS::BedrockAgentCore::WorkloadIdentity" || "AWS::SecurityHub::Hub" || "AWS::CloudFront::Distribution" || "AWS::SecurityHub::HubV2" || "AWS::CloudWatch::OTelEnrichment" || "AWS::MSK::Cluster" || "AWS::S3::Bucket",
45
45
  * TelemetryType: "Logs" || "Metrics" || "Traces", // required
46
46
  * TelemetrySourceTypes: [ // TelemetrySourceTypes
47
47
  * "VPC_FLOW_LOGS" || "ROUTE53_RESOLVER_QUERY_LOGS" || "EKS_AUDIT_LOGS" || "EKS_AUTHENTICATOR_LOGS" || "EKS_CONTROLLER_MANAGER_LOGS" || "EKS_SCHEDULER_LOGS" || "EKS_API_LOGS",
@@ -121,7 +121,7 @@ declare const UpdateTelemetryRuleCommand_base: {
121
121
  * },
122
122
  * LogDeliveryParameters: { // LogDeliveryParameters
123
123
  * LogTypes: [ // LogTypes
124
- * "APPLICATION_LOGS" || "USAGE_LOGS" || "SECURITY_FINDING_LOGS" || "ACCESS_LOGS" || "CONNECTION_LOGS",
124
+ * "APPLICATION_LOGS" || "USAGE_LOGS" || "SECURITY_FINDING_LOGS" || "ACCESS_LOGS" || "CONNECTION_LOGS" || "S3_SERVER_ACCESS_LOGS",
125
125
  * ],
126
126
  * },
127
127
  * MskMonitoringParameters: { // MskMonitoringParameters
@@ -41,7 +41,7 @@ declare const UpdateTelemetryRuleForOrganizationCommand_base: {
41
41
  * const input = { // UpdateTelemetryRuleForOrganizationInput
42
42
  * RuleIdentifier: "STRING_VALUE", // required
43
43
  * Rule: { // TelemetryRule
44
- * ResourceType: "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function" || "AWS::CloudTrail" || "AWS::EKS::Cluster" || "AWS::WAFv2::WebACL" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::BedrockAgentCore::Runtime" || "AWS::BedrockAgentCore::Browser" || "AWS::BedrockAgentCore::CodeInterpreter" || "AWS::BedrockAgentCore::Gateway" || "AWS::BedrockAgentCore::Memory" || "AWS::BedrockAgentCore::WorkloadIdentity" || "AWS::SecurityHub::Hub" || "AWS::CloudFront::Distribution" || "AWS::SecurityHub::HubV2" || "AWS::CloudWatch::OTelEnrichment" || "AWS::MSK::Cluster",
44
+ * ResourceType: "AWS::EC2::Instance" || "AWS::EC2::VPC" || "AWS::Lambda::Function" || "AWS::CloudTrail" || "AWS::EKS::Cluster" || "AWS::WAFv2::WebACL" || "AWS::ElasticLoadBalancingV2::LoadBalancer" || "AWS::Route53Resolver::ResolverEndpoint" || "AWS::BedrockAgentCore::Runtime" || "AWS::BedrockAgentCore::Browser" || "AWS::BedrockAgentCore::CodeInterpreter" || "AWS::BedrockAgentCore::Gateway" || "AWS::BedrockAgentCore::Memory" || "AWS::BedrockAgentCore::WorkloadIdentity" || "AWS::SecurityHub::Hub" || "AWS::CloudFront::Distribution" || "AWS::SecurityHub::HubV2" || "AWS::CloudWatch::OTelEnrichment" || "AWS::MSK::Cluster" || "AWS::S3::Bucket",
45
45
  * TelemetryType: "Logs" || "Metrics" || "Traces", // required
46
46
  * TelemetrySourceTypes: [ // TelemetrySourceTypes
47
47
  * "VPC_FLOW_LOGS" || "ROUTE53_RESOLVER_QUERY_LOGS" || "EKS_AUDIT_LOGS" || "EKS_AUTHENTICATOR_LOGS" || "EKS_CONTROLLER_MANAGER_LOGS" || "EKS_SCHEDULER_LOGS" || "EKS_API_LOGS",
@@ -121,7 +121,7 @@ declare const UpdateTelemetryRuleForOrganizationCommand_base: {
121
121
  * },
122
122
  * LogDeliveryParameters: { // LogDeliveryParameters
123
123
  * LogTypes: [ // LogTypes
124
- * "APPLICATION_LOGS" || "USAGE_LOGS" || "SECURITY_FINDING_LOGS" || "ACCESS_LOGS" || "CONNECTION_LOGS",
124
+ * "APPLICATION_LOGS" || "USAGE_LOGS" || "SECURITY_FINDING_LOGS" || "ACCESS_LOGS" || "CONNECTION_LOGS" || "S3_SERVER_ACCESS_LOGS",
125
125
  * ],
126
126
  * },
127
127
  * MskMonitoringParameters: { // MskMonitoringParameters
@@ -119,6 +119,7 @@ export declare const LogType: {
119
119
  readonly ACCESS: "ACCESS_LOGS";
120
120
  readonly APPLICATION: "APPLICATION_LOGS";
121
121
  readonly CONNECTION: "CONNECTION_LOGS";
122
+ readonly S3_SERVER_ACCESS: "S3_SERVER_ACCESS_LOGS";
122
123
  readonly SECURITY_FINDING: "SECURITY_FINDING_LOGS";
123
124
  readonly USAGE: "USAGE_LOGS";
124
125
  };
@@ -196,6 +197,7 @@ export declare const ResourceType: {
196
197
  readonly AWS_MSK_CLUSTER: "AWS::MSK::Cluster";
197
198
  readonly AWS_OTEL_ENRICHMENT: "AWS::CloudWatch::OTelEnrichment";
198
199
  readonly AWS_ROUTE53_RESOLVER_RESOLVER_ENDPOINT: "AWS::Route53Resolver::ResolverEndpoint";
200
+ readonly AWS_S3_BUCKET: "AWS::S3::Bucket";
199
201
  readonly AWS_SECURITY_HUB: "AWS::SecurityHub::Hub";
200
202
  readonly AWS_SECURITY_HUB_HUBV2: "AWS::SecurityHub::HubV2";
201
203
  readonly AWS_WAF_V2_WEB_ACL: "AWS::WAFv2::WebACL";
@@ -317,3 +319,21 @@ export declare const RecordFormat: {
317
319
  * @public
318
320
  */
319
321
  export type RecordFormat = (typeof RecordFormat)[keyof typeof RecordFormat];
322
+ /**
323
+ * @public
324
+ * @enum
325
+ */
326
+ export declare const SignalType: {
327
+ /**
328
+ * <p>Log signal type. The pipeline processes log records.</p>
329
+ */
330
+ readonly LOG: "LOG";
331
+ /**
332
+ * <p>Metric signal type. The pipeline processes metric records.</p>
333
+ */
334
+ readonly METRIC: "METRIC";
335
+ };
336
+ /**
337
+ * @public
338
+ */
339
+ export type SignalType = (typeof SignalType)[keyof typeof SignalType];
@@ -1,4 +1,4 @@
1
- import type { Action, CentralizationFailureReason, DestinationType, EncryptedLogGroupStrategy, EncryptionConflictResolutionStrategy, EncryptionStrategy, FilterBehavior, FilterRequirement, IntegrationStatus, LogType, MskEnhancedMonitoringLevel, OutputFormat, RecordFormat, ResourceType, RuleHealth, SSEAlgorithm, Status, TelemetryEnrichmentStatus, TelemetryPipelineStatus, TelemetrySourceType, TelemetryState, TelemetryType, WAFLogType } from "./enums";
1
+ import type { Action, CentralizationFailureReason, DestinationType, EncryptedLogGroupStrategy, EncryptionConflictResolutionStrategy, EncryptionStrategy, FilterBehavior, FilterRequirement, IntegrationStatus, LogType, MskEnhancedMonitoringLevel, OutputFormat, RecordFormat, ResourceType, RuleHealth, SignalType, SSEAlgorithm, Status, TelemetryEnrichmentStatus, TelemetryPipelineStatus, TelemetrySourceType, TelemetryState, TelemetryType, WAFLogType } from "./enums";
2
2
  /**
3
3
  * <p> Condition that matches based on the specific WAF action taken on the request. </p>
4
4
  * @public
@@ -1866,6 +1866,11 @@ export interface TestTelemetryPipelineInput {
1866
1866
  * @public
1867
1867
  */
1868
1868
  Configuration: TelemetryPipelineConfiguration | undefined;
1869
+ /**
1870
+ * <p>The type of telemetry signal to test. If not specified, defaults to log processing.</p>
1871
+ * @public
1872
+ */
1873
+ SignalType?: SignalType | undefined;
1869
1874
  }
1870
1875
  /**
1871
1876
  * <p>Contains detailed error information from pipeline test operations, providing structured error responses for better debugging and troubleshooting capabilities.</p>
@@ -13,7 +13,6 @@ export declare const getRuntimeConfig: (config: ObservabilityAdminClientConfig)
13
13
  region: string | import("@smithy/types").Provider<any>;
14
14
  requestHandler: import("@smithy/core/protocols").HttpHandler<any> | RequestHandler;
15
15
  retryMode: string | import("@smithy/types").Provider<string>;
16
- sha256: import("@smithy/types").HashConstructor;
17
16
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
18
17
  useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
19
18
  useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
@@ -24,6 +23,7 @@ export declare const getRuntimeConfig: (config: ObservabilityAdminClientConfig)
24
23
  [setting: string]: unknown;
25
24
  };
26
25
  apiVersion: string;
26
+ sha256: import("@smithy/types").HashConstructor;
27
27
  urlParser: import("@smithy/types").UrlParser;
28
28
  base64Decoder: import("@smithy/types").Decoder;
29
29
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -14,7 +14,6 @@ export declare const getRuntimeConfig: (config: ObservabilityAdminClientConfig)
14
14
  region: string | import("@smithy/types").Provider<string>;
15
15
  requestHandler: RequestHandler | import("@smithy/core/protocols").HttpHandler<any>;
16
16
  retryMode: string | import("@smithy/types").Provider<string>;
17
- sha256: import("@smithy/types").HashConstructor;
18
17
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
19
18
  useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
19
  useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
@@ -26,6 +25,7 @@ export declare const getRuntimeConfig: (config: ObservabilityAdminClientConfig)
26
25
  [setting: string]: unknown;
27
26
  };
28
27
  apiVersion: string;
28
+ sha256: import("@smithy/types").HashConstructor;
29
29
  urlParser: import("@smithy/types").UrlParser;
30
30
  base64Decoder: import("@smithy/types").Decoder;
31
31
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -4,7 +4,6 @@ import type { ObservabilityAdminClientConfig } from "./ObservabilityAdminClient"
4
4
  */
5
5
  export declare const getRuntimeConfig: (config: ObservabilityAdminClientConfig) => {
6
6
  runtime: string;
7
- sha256: import("@smithy/types").HashConstructor;
8
7
  requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/core/protocols").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
8
  cacheMiddleware?: boolean;
10
9
  protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsRestJsonProtocol;
@@ -13,6 +12,7 @@ export declare const getRuntimeConfig: (config: ObservabilityAdminClientConfig)
13
12
  [setting: string]: unknown;
14
13
  };
15
14
  apiVersion: string;
15
+ sha256: import("@smithy/types").HashConstructor;
16
16
  urlParser: import("@smithy/types").UrlParser;
17
17
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
18
18
  streamCollector: (stream: import("stream").Readable | import("stream/web").ReadableStream | ReadableStream | Blob) => Promise<Uint8Array>;
@@ -21,6 +21,7 @@ export declare const getRuntimeConfig: (config: ObservabilityAdminClientConfig)
21
21
  defaultNamespace?: string;
22
22
  };
23
23
  serviceId: string;
24
+ sha256: import("@smithy/types").HashConstructor;
24
25
  urlParser: import("@smithy/types").UrlParser;
25
26
  utf8Decoder: import("@smithy/types").Decoder;
26
27
  utf8Encoder: (input: Uint8Array | string) => string;
@@ -57,6 +57,7 @@ export declare const LogType: {
57
57
  readonly ACCESS: "ACCESS_LOGS";
58
58
  readonly APPLICATION: "APPLICATION_LOGS";
59
59
  readonly CONNECTION: "CONNECTION_LOGS";
60
+ readonly S3_SERVER_ACCESS: "S3_SERVER_ACCESS_LOGS";
60
61
  readonly SECURITY_FINDING: "SECURITY_FINDING_LOGS";
61
62
  readonly USAGE: "USAGE_LOGS";
62
63
  };
@@ -102,6 +103,7 @@ export declare const ResourceType: {
102
103
  readonly AWS_MSK_CLUSTER: "AWS::MSK::Cluster";
103
104
  readonly AWS_OTEL_ENRICHMENT: "AWS::CloudWatch::OTelEnrichment";
104
105
  readonly AWS_ROUTE53_RESOLVER_RESOLVER_ENDPOINT: "AWS::Route53Resolver::ResolverEndpoint";
106
+ readonly AWS_S3_BUCKET: "AWS::S3::Bucket";
105
107
  readonly AWS_SECURITY_HUB: "AWS::SecurityHub::Hub";
106
108
  readonly AWS_SECURITY_HUB_HUBV2: "AWS::SecurityHub::HubV2";
107
109
  readonly AWS_WAF_V2_WEB_ACL: "AWS::WAFv2::WebACL";
@@ -169,3 +171,8 @@ export declare const RecordFormat: {
169
171
  readonly STRING: "STRING";
170
172
  };
171
173
  export type RecordFormat = (typeof RecordFormat)[keyof typeof RecordFormat];
174
+ export declare const SignalType: {
175
+ readonly LOG: "LOG";
176
+ readonly METRIC: "METRIC";
177
+ };
178
+ export type SignalType = (typeof SignalType)[keyof typeof SignalType];
@@ -14,6 +14,7 @@ import {
14
14
  RecordFormat,
15
15
  ResourceType,
16
16
  RuleHealth,
17
+ SignalType,
17
18
  SSEAlgorithm,
18
19
  Status,
19
20
  TelemetryEnrichmentStatus,
@@ -491,6 +492,7 @@ export interface _Record {
491
492
  export interface TestTelemetryPipelineInput {
492
493
  Records: _Record[] | undefined;
493
494
  Configuration: TelemetryPipelineConfiguration | undefined;
495
+ SignalType?: SignalType | undefined;
494
496
  }
495
497
  export interface PipelineOutputError {
496
498
  Message?: string | undefined;
@@ -22,7 +22,6 @@ export declare const getRuntimeConfig: (
22
22
  | import("@smithy/core/protocols").HttpHandler<any>
23
23
  | RequestHandler;
24
24
  retryMode: string | import("@smithy/types").Provider<string>;
25
- sha256: import("@smithy/types").HashConstructor;
26
25
  streamCollector: (
27
26
  stream:
28
27
  | import("stream").Readable
@@ -44,6 +43,7 @@ export declare const getRuntimeConfig: (
44
43
  [setting: string]: unknown;
45
44
  };
46
45
  apiVersion: string;
46
+ sha256: import("@smithy/types").HashConstructor;
47
47
  urlParser: import("@smithy/types").UrlParser;
48
48
  base64Decoder: import("@smithy/types").Decoder;
49
49
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -23,7 +23,6 @@ export declare const getRuntimeConfig: (
23
23
  | RequestHandler
24
24
  | import("@smithy/core/protocols").HttpHandler<any>;
25
25
  retryMode: string | import("@smithy/types").Provider<string>;
26
- sha256: import("@smithy/types").HashConstructor;
27
26
  streamCollector: (
28
27
  stream:
29
28
  | import("stream").Readable
@@ -44,6 +43,7 @@ export declare const getRuntimeConfig: (
44
43
  [setting: string]: unknown;
45
44
  };
46
45
  apiVersion: string;
46
+ sha256: import("@smithy/types").HashConstructor;
47
47
  urlParser: import("@smithy/types").UrlParser;
48
48
  base64Decoder: import("@smithy/types").Decoder;
49
49
  base64Encoder: (_input: Uint8Array | string) => string;
@@ -3,7 +3,6 @@ export declare const getRuntimeConfig: (
3
3
  config: ObservabilityAdminClientConfig
4
4
  ) => {
5
5
  runtime: string;
6
- sha256: import("@smithy/types").HashConstructor;
7
6
  requestHandler:
8
7
  | import("@smithy/types").NodeHttpHandlerOptions
9
8
  | import("@smithy/types").FetchHttpHandlerOptions
@@ -20,6 +19,7 @@ export declare const getRuntimeConfig: (
20
19
  [setting: string]: unknown;
21
20
  };
22
21
  apiVersion: string;
22
+ sha256: import("@smithy/types").HashConstructor;
23
23
  urlParser: import("@smithy/types").UrlParser;
24
24
  bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
25
25
  streamCollector: (
@@ -26,6 +26,7 @@ export declare const getRuntimeConfig: (
26
26
  defaultNamespace?: string;
27
27
  };
28
28
  serviceId: string;
29
+ sha256: import("@smithy/types").HashConstructor;
29
30
  urlParser: import("@smithy/types").UrlParser;
30
31
  utf8Decoder: import("@smithy/types").Decoder;
31
32
  utf8Encoder: (input: Uint8Array | string) => string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-observabilityadmin",
3
3
  "description": "AWS SDK for JavaScript Observabilityadmin Client for Node.js, Browser and React Native",
4
- "version": "3.1076.0",
4
+ "version": "3.1077.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline",
@@ -19,14 +19,12 @@
19
19
  "module": "./dist-es/index.js",
20
20
  "sideEffects": false,
21
21
  "dependencies": {
22
- "@aws-crypto/sha256-browser": "5.2.0",
23
- "@aws-crypto/sha256-js": "5.2.0",
24
- "@aws-sdk/core": "^3.974.24",
25
- "@aws-sdk/credential-provider-node": "^3.972.59",
22
+ "@aws-sdk/core": "^3.974.25",
23
+ "@aws-sdk/credential-provider-node": "^3.972.60",
26
24
  "@aws-sdk/types": "^3.973.14",
27
- "@smithy/core": "^3.27.0",
28
- "@smithy/fetch-http-handler": "^5.6.0",
29
- "@smithy/node-http-handler": "^4.9.0",
25
+ "@smithy/core": "^3.28.0",
26
+ "@smithy/fetch-http-handler": "^5.6.1",
27
+ "@smithy/node-http-handler": "^4.9.1",
30
28
  "@smithy/types": "^4.15.0",
31
29
  "tslib": "^2.6.2"
32
30
  },