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 { CreateProfileCommandInput, CreateProfileCommandOutput, } from "./commands/CreateProfileCommand"; import { CreateTrustAnchorCommandInput, CreateTrustAnchorCommandOutput, } from "./commands/CreateTrustAnchorCommand"; import { DeleteAttributeMappingCommandInput, DeleteAttributeMappingCommandOutput, } from "./commands/DeleteAttributeMappingCommand"; import { DeleteCrlCommandInput, DeleteCrlCommandOutput } from "./commands/DeleteCrlCommand"; import { DeleteProfileCommandInput, DeleteProfileCommandOutput, } from "./commands/DeleteProfileCommand"; import { DeleteTrustAnchorCommandInput, DeleteTrustAnchorCommandOutput, } from "./commands/DeleteTrustAnchorCommand"; import { DisableCrlCommandInput, DisableCrlCommandOutput } from "./commands/DisableCrlCommand"; import { DisableProfileCommandInput, DisableProfileCommandOutput, } from "./commands/DisableProfileCommand"; import { DisableTrustAnchorCommandInput, DisableTrustAnchorCommandOutput, } from "./commands/DisableTrustAnchorCommand"; import { EnableCrlCommandInput, EnableCrlCommandOutput } from "./commands/EnableCrlCommand"; import { EnableProfileCommandInput, EnableProfileCommandOutput, } from "./commands/EnableProfileCommand"; import { EnableTrustAnchorCommandInput, EnableTrustAnchorCommandOutput, } from "./commands/EnableTrustAnchorCommand"; import { GetCrlCommandInput, GetCrlCommandOutput } from "./commands/GetCrlCommand"; import { GetProfileCommandInput, GetProfileCommandOutput } from "./commands/GetProfileCommand"; import { GetSubjectCommandInput, GetSubjectCommandOutput } from "./commands/GetSubjectCommand"; import { GetTrustAnchorCommandInput, GetTrustAnchorCommandOutput, } from "./commands/GetTrustAnchorCommand"; import { ImportCrlCommandInput, ImportCrlCommandOutput } from "./commands/ImportCrlCommand"; import { ListCrlsCommandInput, ListCrlsCommandOutput } from "./commands/ListCrlsCommand"; import { ListProfilesCommandInput, ListProfilesCommandOutput, } from "./commands/ListProfilesCommand"; import { ListSubjectsCommandInput, ListSubjectsCommandOutput, } from "./commands/ListSubjectsCommand"; import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, } from "./commands/ListTagsForResourceCommand"; import { ListTrustAnchorsCommandInput, ListTrustAnchorsCommandOutput, } from "./commands/ListTrustAnchorsCommand"; import { PutAttributeMappingCommandInput, PutAttributeMappingCommandOutput, } from "./commands/PutAttributeMappingCommand"; import { PutNotificationSettingsCommandInput, PutNotificationSettingsCommandOutput, } from "./commands/PutNotificationSettingsCommand"; import { ResetNotificationSettingsCommandInput, ResetNotificationSettingsCommandOutput, } from "./commands/ResetNotificationSettingsCommand"; import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand"; import { UntagResourceCommandInput, UntagResourceCommandOutput, } from "./commands/UntagResourceCommand"; import { UpdateCrlCommandInput, UpdateCrlCommandOutput } from "./commands/UpdateCrlCommand"; import { UpdateProfileCommandInput, UpdateProfileCommandOutput, } from "./commands/UpdateProfileCommand"; import { UpdateTrustAnchorCommandInput, UpdateTrustAnchorCommandOutput, } from "./commands/UpdateTrustAnchorCommand"; import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters, } from "./endpoint/EndpointParameters"; import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions"; export { __Client }; export type ServiceInputTypes = | CreateProfileCommandInput | CreateTrustAnchorCommandInput | DeleteAttributeMappingCommandInput | DeleteCrlCommandInput | DeleteProfileCommandInput | DeleteTrustAnchorCommandInput | DisableCrlCommandInput | DisableProfileCommandInput | DisableTrustAnchorCommandInput | EnableCrlCommandInput | EnableProfileCommandInput | EnableTrustAnchorCommandInput | GetCrlCommandInput | GetProfileCommandInput | GetSubjectCommandInput | GetTrustAnchorCommandInput | ImportCrlCommandInput | ListCrlsCommandInput | ListProfilesCommandInput | ListSubjectsCommandInput | ListTagsForResourceCommandInput | ListTrustAnchorsCommandInput | PutAttributeMappingCommandInput | PutNotificationSettingsCommandInput | ResetNotificationSettingsCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateCrlCommandInput | UpdateProfileCommandInput | UpdateTrustAnchorCommandInput; export type ServiceOutputTypes = | CreateProfileCommandOutput | CreateTrustAnchorCommandOutput | DeleteAttributeMappingCommandOutput | DeleteCrlCommandOutput | DeleteProfileCommandOutput | DeleteTrustAnchorCommandOutput | DisableCrlCommandOutput | DisableProfileCommandOutput | DisableTrustAnchorCommandOutput | EnableCrlCommandOutput | EnableProfileCommandOutput | EnableTrustAnchorCommandOutput | GetCrlCommandOutput | GetProfileCommandOutput | GetSubjectCommandOutput | GetTrustAnchorCommandOutput | ImportCrlCommandOutput | ListCrlsCommandOutput | ListProfilesCommandOutput | ListSubjectsCommandOutput | ListTagsForResourceCommandOutput | ListTrustAnchorsCommandOutput | PutAttributeMappingCommandOutput | PutNotificationSettingsCommandOutput | ResetNotificationSettingsCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateCrlCommandOutput | UpdateProfileCommandOutput | UpdateTrustAnchorCommandOutput; 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 RolesAnywhereClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & UserAgentInputConfig & RetryInputConfig & RegionInputConfig & HostHeaderInputConfig & EndpointInputConfig & HttpAuthSchemeInputConfig & ClientInputEndpointParameters; export interface RolesAnywhereClientConfig extends RolesAnywhereClientConfigType {} export type RolesAnywhereClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required & RuntimeExtensionsConfig & UserAgentResolvedConfig & RetryResolvedConfig & RegionResolvedConfig & HostHeaderResolvedConfig & EndpointResolvedConfig & HttpAuthSchemeResolvedConfig & ClientResolvedEndpointParameters; export interface RolesAnywhereClientResolvedConfig extends RolesAnywhereClientResolvedConfigType {} export declare class RolesAnywhereClient extends __Client< __HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, RolesAnywhereClientResolvedConfig > { readonly config: RolesAnywhereClientResolvedConfig; constructor(...[configuration]: __CheckOptionalClientConfig); destroy(): void; }