import { HostHeaderInputConfig, HostHeaderResolvedConfig, UserAgentInputConfig, UserAgentResolvedConfig, } from "@aws-sdk/core/client"; import { DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client, } from "@smithy/core/client"; import { RegionInputConfig, RegionResolvedConfig } from "@smithy/core/config"; import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/core/endpoints"; import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/core/protocols"; import { RetryInputConfig, RetryResolvedConfig } from "@smithy/core/retry"; import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent, } from "@smithy/types"; import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig, } from "./auth/httpAuthSchemeProvider"; import { AddNotificationChannelsCommandInput, AddNotificationChannelsCommandOutput, } from "./commands/AddNotificationChannelsCommand"; import { BatchGetFrameMetricDataCommandInput, BatchGetFrameMetricDataCommandOutput, } from "./commands/BatchGetFrameMetricDataCommand"; import { ConfigureAgentCommandInput, ConfigureAgentCommandOutput, } from "./commands/ConfigureAgentCommand"; import { CreateProfilingGroupCommandInput, CreateProfilingGroupCommandOutput, } from "./commands/CreateProfilingGroupCommand"; import { DeleteProfilingGroupCommandInput, DeleteProfilingGroupCommandOutput, } from "./commands/DeleteProfilingGroupCommand"; import { DescribeProfilingGroupCommandInput, DescribeProfilingGroupCommandOutput, } from "./commands/DescribeProfilingGroupCommand"; import { GetFindingsReportAccountSummaryCommandInput, GetFindingsReportAccountSummaryCommandOutput, } from "./commands/GetFindingsReportAccountSummaryCommand"; import { GetNotificationConfigurationCommandInput, GetNotificationConfigurationCommandOutput, } from "./commands/GetNotificationConfigurationCommand"; import { GetPolicyCommandInput, GetPolicyCommandOutput } from "./commands/GetPolicyCommand"; import { GetProfileCommandInput, GetProfileCommandOutput } from "./commands/GetProfileCommand"; import { GetRecommendationsCommandInput, GetRecommendationsCommandOutput, } from "./commands/GetRecommendationsCommand"; import { ListFindingsReportsCommandInput, ListFindingsReportsCommandOutput, } from "./commands/ListFindingsReportsCommand"; import { ListProfileTimesCommandInput, ListProfileTimesCommandOutput, } from "./commands/ListProfileTimesCommand"; import { ListProfilingGroupsCommandInput, ListProfilingGroupsCommandOutput, } from "./commands/ListProfilingGroupsCommand"; import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, } from "./commands/ListTagsForResourceCommand"; import { PostAgentProfileCommandInput, PostAgentProfileCommandOutput, } from "./commands/PostAgentProfileCommand"; import { PutPermissionCommandInput, PutPermissionCommandOutput, } from "./commands/PutPermissionCommand"; import { RemoveNotificationChannelCommandInput, RemoveNotificationChannelCommandOutput, } from "./commands/RemoveNotificationChannelCommand"; import { RemovePermissionCommandInput, RemovePermissionCommandOutput, } from "./commands/RemovePermissionCommand"; import { SubmitFeedbackCommandInput, SubmitFeedbackCommandOutput, } from "./commands/SubmitFeedbackCommand"; import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand"; import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; import { UpdateProfilingGroupCommandInput, UpdateProfilingGroupCommandOutput, } from "./commands/UpdateProfilingGroupCommand"; import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters, } from "./endpoint/EndpointParameters"; import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; export { __Client }; export type ServiceInputTypes = | AddNotificationChannelsCommandInput | BatchGetFrameMetricDataCommandInput | ConfigureAgentCommandInput | CreateProfilingGroupCommandInput | DeleteProfilingGroupCommandInput | DescribeProfilingGroupCommandInput | GetFindingsReportAccountSummaryCommandInput | GetNotificationConfigurationCommandInput | GetPolicyCommandInput | GetProfileCommandInput | GetRecommendationsCommandInput | ListFindingsReportsCommandInput | ListProfileTimesCommandInput | ListProfilingGroupsCommandInput | ListTagsForResourceCommandInput | PostAgentProfileCommandInput | PutPermissionCommandInput | RemoveNotificationChannelCommandInput | RemovePermissionCommandInput | SubmitFeedbackCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateProfilingGroupCommandInput; export type ServiceOutputTypes = | AddNotificationChannelsCommandOutput | BatchGetFrameMetricDataCommandOutput | ConfigureAgentCommandOutput | CreateProfilingGroupCommandOutput | DeleteProfilingGroupCommandOutput | DescribeProfilingGroupCommandOutput | GetFindingsReportAccountSummaryCommandOutput | GetNotificationConfigurationCommandOutput | GetPolicyCommandOutput | GetProfileCommandOutput | GetRecommendationsCommandOutput | ListFindingsReportsCommandOutput | ListProfileTimesCommandOutput | ListProfilingGroupsCommandOutput | ListTagsForResourceCommandOutput | PostAgentProfileCommandOutput | PutPermissionCommandOutput | RemoveNotificationChannelCommandOutput | RemovePermissionCommandOutput | SubmitFeedbackCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateProfilingGroupCommandOutput; export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> { requestHandler?: __HttpHandlerUserInput; sha256?: __ChecksumConstructor | __HashConstructor; urlParser?: __UrlParser; bodyLengthChecker?: __BodyLengthCalculator; streamCollector?: __StreamCollector; base64Decoder?: __Decoder; base64Encoder?: __Encoder; utf8Decoder?: __Decoder; utf8Encoder?: __Encoder; runtime?: string; disableHostPrefix?: boolean; serviceId?: string; useDualstackEndpoint?: boolean | __Provider; useFipsEndpoint?: boolean | __Provider; region?: string | __Provider; profile?: string; defaultUserAgentProvider?: __Provider<__UserAgent>; credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider; maxAttempts?: number | __Provider; retryMode?: string | __Provider; logger?: __Logger; extensions?: RuntimeExtension[]; defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>; } export type CodeGuruProfilerClientConfigType = Partial< __SmithyConfiguration<__HttpHandlerOptions> > & ClientDefaults & UserAgentInputConfig & RetryInputConfig & RegionInputConfig & HostHeaderInputConfig & EndpointInputConfig & HttpAuthSchemeInputConfig & ClientInputEndpointParameters; export interface CodeGuruProfilerClientConfig extends CodeGuruProfilerClientConfigType {} export type CodeGuruProfilerClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig & RegionResolvedConfig & HostHeaderResolvedConfig & EndpointResolvedConfig & HttpAuthSchemeResolvedConfig & ClientResolvedEndpointParameters; export interface CodeGuruProfilerClientResolvedConfig extends CodeGuruProfilerClientResolvedConfigType {} export declare class CodeGuruProfilerClient extends __Client< __HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, CodeGuruProfilerClientResolvedConfig > { readonly config: CodeGuruProfilerClientResolvedConfig; constructor(...[configuration]: __CheckOptionalClientConfig); destroy(): void; }