type
stringclasses
7 values
content
stringlengths
4
9.55k
repo
stringlengths
7
96
path
stringlengths
4
178
language
stringclasses
1 value
InterfaceDeclaration
export interface GetDistributionConfigurationRequest { /** * <p>The Amazon Resource Name (ARN) of the distribution configuration that you want to retrieve. </p> */ distributionConfigurationArn: string | undefined; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface GetDistributionConfigurationResponse { /** * <p>The request ID that uniquely identifies this request. </p> */ requestId?: string; /** * <p>The distribution configuration object. </p> */ distributionConfiguration?: DistributionConfiguration; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface GetImageRequest { /** * <p>The Amazon Resource Name (ARN) of the image that you want to retrieve. </p> */ imageBuildVersionArn: string | undefined; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
/** * <p>An image recipe.</p> */ export interface ImageRecipe { /** * <p>The owner of the image recipe.</p> */ owner?: string; /** * <p>The date on which this image recipe was created.</p> */ dateCreated?: string; /** * <p>The block device mappings to apply when creating images from this re...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
/** * <p>Details of the infrastructure configuration.</p> */ export interface InfrastructureConfiguration { /** * <p>The description of the infrastructure configuration.</p> */ description?: string; /** * <p>The security group IDs of the infrastructure configuration.</p> */ securityGroupIds?: str...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
/** * <p>The resources produced by this image. </p> */ export interface OutputResources { /** * <p>The EC2 AMIs created by this image. </p> */ amis?: Ami[]; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
/** * <p>An image build version.</p> */ export interface Image { /** * <p>The distribution configuration used when creating this image.</p> */ distributionConfiguration?: DistributionConfiguration; /** * <p>The name of the image pipeline that created this image.</p> */ sourcePipelineName?: string...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface GetImageResponse { /** * <p>The image object. </p> */ image?: Image; /** * <p>The request ID that uniquely identifies this request. </p> */ requestId?: string; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface GetImagePipelineRequest { /** * <p>The Amazon Resource Name (ARN) of the image pipeline that you want to retrieve. </p> */ imagePipelineArn: string | undefined; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
/** * <p>Details of an image pipeline.</p> */ export interface ImagePipeline { /** * <p>The Amazon Resource Name (ARN) of the image pipeline.</p> */ arn?: string; /** * <p>The status of the image pipeline.</p> */ status?: PipelineStatus | string; /** * <p> Collects additional information ab...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface GetImagePipelineResponse { /** * <p>The request ID that uniquely identifies this request. </p> */ requestId?: string; /** * <p>The image pipeline object. </p> */ imagePipeline?: ImagePipeline; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface GetImagePolicyRequest { /** * <p>The Amazon Resource Name (ARN) of the image whose policy you want to retrieve. </p> */ imageArn: string | undefined; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface GetImagePolicyResponse { /** * <p>The request ID that uniquely identifies this request. </p> */ requestId?: string; /** * <p>The image policy object. </p> */ policy?: string; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface GetImageRecipeRequest { /** * <p>The Amazon Resource Name (ARN) of the image recipe that you want to retrieve. </p> */ imageRecipeArn: string | undefined; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface GetImageRecipeResponse { /** * <p>The request ID that uniquely identifies this request. </p> */ requestId?: string; /** * <p>The image recipe object. </p> */ imageRecipe?: ImageRecipe; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface GetImageRecipePolicyRequest { /** * <p>The Amazon Resource Name (ARN) of the image recipe whose policy you want to retrieve. </p> */ imageRecipeArn: string | undefined; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface GetImageRecipePolicyResponse { /** * <p>The request ID that uniquely identifies this request. </p> */ requestId?: string; /** * <p>The image recipe policy object. </p> */ policy?: string; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
/** * <p> GetInfrastructureConfiguration request object. </p> */ export interface GetInfrastructureConfigurationRequest { /** * <p>The Amazon Resource Name (ARN) of the infrastructure configuration that you want to retrieve. </p> */ infrastructureConfigurationArn: string | undefined; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
/** * <p>GetInfrastructureConfiguration response object. </p> */ export interface GetInfrastructureConfigurationResponse { /** * <p>The infrastructure configuration object. </p> */ infrastructureConfiguration?: InfrastructureConfiguration; /** * <p>The request ID that uniquely identifies this request....
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface ImportComponentRequest { /** * <p>The semantic version of the component. This version follows the semantic version syntax. For example, major.minor.patch. This could be versioned like software (2.0.1) or like a date (2019.12.01).</p> */ semanticVersion: string | undefined; /** * <p> Th...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface ImportComponentResponse { /** * <p>The request ID that uniquely identifies this request. </p> */ requestId?: string; /** * <p>The idempotency token used to make this request idempotent. </p> */ clientToken?: string; /** * <p>The Amazon Resource Name (ARN) of the imported com...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
/** * <p>You have provided an invalid pagination token in your request.</p> */ export interface InvalidPaginationTokenException extends __SmithyException, $MetadataBearer { name: "InvalidPaginationTokenException"; $fault: "client"; message?: string; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface ListComponentBuildVersionsRequest { /** * <p>The maximum items to return in a request. </p> */ maxResults?: number; /** * <p>A token to specify where to start paginating. This is the NextToken from a previously truncated response. </p> */ nextToken?: string; /** * <p>The com...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface ListComponentBuildVersionsResponse { /** * <p>The request ID that uniquely identifies this request. </p> */ requestId?: string; /** * <p>The next token used for paginated responses. When this is not empty, there are additional elements that the service has not included in this request....
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface ListComponentsRequest { /** * <p>The maximum items to return in a request. </p> */ maxResults?: number; /** * <p>The owner defines which components you want to list. By default, this request will only show components owned by your account. You can use this field to specify if you want ...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface ListComponentsResponse { /** * <p>The list of component semantic versions. </p> */ componentVersionList?: ComponentVersion[]; /** * <p>The request ID that uniquely identifies this request. </p> */ requestId?: string; /** * <p>The next token used for paginated responses. When...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface ListDistributionConfigurationsRequest { /** * <p>The maximum items to return in a request. </p> */ maxResults?: number; /** * <p>A token to specify where to start paginating. This is the NextToken from a previously truncated response. </p> */ nextToken?: string; /** * <p>The...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface ListDistributionConfigurationsResponse { /** * <p>The next token used for paginated responses. When this is not empty, there are additional elements that the service has not included in this request. Use this token with the next request to retrieve additional objects. </p> */ nextToken?: str...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface ListImageBuildVersionsRequest { /** * <p>A token to specify where to start paginating. This is the NextToken from a previously truncated response. </p> */ nextToken?: string; /** * <p>The filters. </p> */ filters?: Filter[]; /** * <p>The Amazon Resource Name (ARN) of the ima...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
/** * <p>An image summary.</p> */ export interface ImageSummary { /** * <p>The date on which this image was created.</p> */ dateCreated?: string; /** * <p>The output resources produced when creating this image.</p> */ outputResources?: OutputResources; /** * <p>The tags of the image.</p> ...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface ListImageBuildVersionsResponse { /** * <p>The list of image build versions. </p> */ imageSummaryList?: ImageSummary[]; /** * <p>The next token used for paginated responses. When this is not empty, there are additional elements that the service has not included in this request. Use this...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface ListImagePipelineImagesRequest { /** * <p>The maximum items to return in a request. </p> */ maxResults?: number; /** * <p>The Amazon Resource Name (ARN) of the image pipeline whose images you want to view. </p> */ imagePipelineArn: string | undefined; /** * <p>The filters. <...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface ListImagePipelineImagesResponse { /** * <p>The request ID that uniquely identifies this request. </p> */ requestId?: string; /** * <p>The next token used for paginated responses. When this is not empty, there are additional elements that the service has not included in this request. Us...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface ListImagePipelinesRequest { /** * <p>A token to specify where to start paginating. This is the NextToken from a previously truncated response. </p> */ nextToken?: string; /** * <p>The filters. </p> */ filters?: Filter[]; /** * <p>The maximum items to return in a request. </p...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface ListImagePipelinesResponse { /** * <p>The request ID that uniquely identifies this request. </p> */ requestId?: string; /** * <p>The next token used for paginated responses. When this is not empty, there are additional elements that the service has not included in this request. Use thi...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface ListImageRecipesRequest { /** * <p>The maximum items to return in a request. </p> */ maxResults?: number; /** * <p>The owner defines which image recipes you want to list. By default, this request will only show image recipes owned by your account. You can use this field to specify if y...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
/** * <p>A summary of an image recipe.</p> */ export interface ImageRecipeSummary { /** * <p>The platform of the image recipe.</p> */ platform?: Platform | string; /** * <p>The tags of the image recipe.</p> */ tags?: { [key: string]: string }; /** * <p>The name of the image recipe.</p> *...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface ListImageRecipesResponse { /** * <p>The request ID that uniquely identifies this request. </p> */ requestId?: string; /** * <p>The next token used for paginated responses. When this is not empty, there are additional elements that the service has not included in this request. Use this ...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface ListImagesRequest { /** * <p>A token to specify where to start paginating. This is the NextToken from a previously truncated response. </p> */ nextToken?: string; /** * <p>The maximum items to return in a request. </p> */ maxResults?: number; /** * <p>The owner defines which...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
/** * <p>An image semantic version.</p> */ export interface ImageVersion { /** * <p>The platform of the image semantic version.</p> */ platform?: Platform | string; /** * <p> The operating system version of the instance. For example, Amazon Linux 2, Ubuntu 18, or Microsoft Windows Server 2019. </p> ...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface ListImagesResponse { /** * <p>The request ID that uniquely identifies this request. </p> */ requestId?: string; /** * <p>The list of image semantic versions. </p> */ imageVersionList?: ImageVersion[]; /** * <p>The next token used for paginated responses. When this is not emp...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface ListInfrastructureConfigurationsRequest { /** * <p>The maximum items to return in a request. </p> */ maxResults?: number; /** * <p>The filters. </p> */ filters?: Filter[]; /** * <p>A token to specify where to start paginating. This is the NextToken from a previously truncate...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
/** * <p>The infrastructure used when building EC2 AMIs.</p> */ export interface InfrastructureConfigurationSummary { /** * <p>The description of the infrastructure configuration.</p> */ description?: string; /** * <p>The tags of the infrastructure configuration.</p> */ tags?: { [key: string]: st...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface ListInfrastructureConfigurationsResponse { /** * <p>The request ID that uniquely identifies this request. </p> */ requestId?: string; /** * <p>The list of infrastructure configurations. </p> */ infrastructureConfigurationSummaryList?: InfrastructureConfigurationSummary[]; /** ...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
/** * <p>The specified parameter is invalid. Review the available parameters for the API request.</p> */ export interface InvalidParameterException extends __SmithyException, $MetadataBearer { name: "InvalidParameterException"; $fault: "client"; message?: string; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface ListTagsForResourceRequest { /** * <p>The Amazon Resource Name (ARN) of the resource whose tags you want to retrieve. </p> */ resourceArn: string | undefined; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface ListTagsForResourceResponse { /** * <p>The tags for the specified resource. </p> */ tags?: { [key: string]: string }; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
/** * <p>The value that you provided for the specified parameter is invalid.</p> */ export interface InvalidParameterValueException extends __SmithyException, $MetadataBearer { name: "InvalidParameterValueException"; $fault: "client"; message?: string; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface PutComponentPolicyRequest { /** * <p>The policy to apply. </p> */ policy: string | undefined; /** * <p>The Amazon Resource Name (ARN) of the component that this policy should be applied to. </p> */ componentArn: string | undefined; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface PutComponentPolicyResponse { /** * <p>The request ID that uniquely identifies this request. </p> */ requestId?: string; /** * <p>The Amazon Resource Name (ARN) of the component that this policy was applied to. </p> */ componentArn?: string; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface PutImagePolicyRequest { /** * <p>The Amazon Resource Name (ARN) of the image that this policy should be applied to. </p> */ imageArn: string | undefined; /** * <p>The policy to apply. </p> */ policy: string | undefined; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface PutImagePolicyResponse { /** * <p>The Amazon Resource Name (ARN) of the image that this policy was applied to. </p> */ imageArn?: string; /** * <p>The request ID that uniquely identifies this request. </p> */ requestId?: string; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface PutImageRecipePolicyRequest { /** * <p>The policy to apply. </p> */ policy: string | undefined; /** * <p>The Amazon Resource Name (ARN) of the image recipe that this policy should be applied to. </p> */ imageRecipeArn: string | undefined; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface PutImageRecipePolicyResponse { /** * <p>The Amazon Resource Name (ARN) of the image recipe that this policy was applied to. </p> */ imageRecipeArn?: string; /** * <p>The request ID that uniquely identifies this request. </p> */ requestId?: string; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface StartImagePipelineExecutionRequest { /** * <p>The idempotency token used to make this request idempotent. </p> */ clientToken?: string; /** * <p>The Amazon Resource Name (ARN) of the image pipeline that you want to manually invoke. </p> */ imagePipelineArn: string | undefined; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface StartImagePipelineExecutionResponse { /** * <p>The idempotency token used to make this request idempotent.</p> */ clientToken?: string; /** * <p>The request ID that uniquely identifies this request. </p> */ requestId?: string; /** * <p>The Amazon Resource Name (ARN) of the i...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface TagResourceRequest { /** * <p>The Amazon Resource Name (ARN) of the resource that you want to tag. </p> */ resourceArn: string | undefined; /** * <p>The tags to apply to the resource. </p> */ tags: { [key: string]: string } | undefined; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface TagResourceResponse {}
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface UntagResourceRequest { /** * <p>The tag keys to remove from the resource. </p> */ tagKeys: string[] | undefined; /** * <p>The Amazon Resource Name (ARN) of the resource that you want to untag. </p> */ resourceArn: string | undefined; }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface UntagResourceResponse {}
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface UpdateDistributionConfigurationRequest { /** * <p>The Amazon Resource Name (ARN) of the distribution configuration that you want to update. </p> */ distributionConfigurationArn: string | undefined; /** * <p>The description of the distribution configuration. </p> */ description?: s...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface UpdateDistributionConfigurationResponse { /** * <p>The Amazon Resource Name (ARN) of the distribution configuration that was updated by this request. </p> */ distributionConfigurationArn?: string; /** * <p>The request ID that uniquely identifies this request. </p> */ requestId?: s...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface UpdateImagePipelineRequest { /** * <p>The description of the image pipeline. </p> */ description?: string; /** * <p>The idempotency token used to make this request idempotent. </p> */ clientToken?: string; /** * <p>The status of the image pipeline. </p> */ status?: Pipe...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface UpdateImagePipelineResponse { /** * <p>The idempotency token used to make this request idempotent. </p> */ clientToken?: string; /** * <p>The request ID that uniquely identifies this request. </p> */ requestId?: string; /** * <p>The Amazon Resource Name (ARN) of the image pi...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface UpdateInfrastructureConfigurationRequest { /** * <p>The terminate instance on failure setting of the infrastructure configuration. Set to false if you want Image Builder to retain the instance used to configure your AMI if the build or test phase of your workflow fails. </p> */ terminateInst...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
InterfaceDeclaration
export interface UpdateInfrastructureConfigurationResponse { /** * <p>The idempotency token used to make this request idempotent. </p> */ clientToken?: string; /** * <p>The Amazon Resource Name (ARN) of the infrastructure configuration that was updated by this request. </p> */ infrastructureConfig...
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
EnumDeclaration
export enum ImageStatus { AVAILABLE = "AVAILABLE", BUILDING = "BUILDING", CANCELLED = "CANCELLED", CREATING = "CREATING", DELETED = "DELETED", DEPRECATED = "DEPRECATED", DISTRIBUTING = "DISTRIBUTING", FAILED = "FAILED", INTEGRATING = "INTEGRATING", PENDING = "PENDING", TESTING = "TESTING", }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
EnumDeclaration
export enum Platform { Linux = "Linux", Windows = "Windows", }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
EnumDeclaration
export enum ComponentType { BUILD = "BUILD", TEST = "TEST", }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
EnumDeclaration
export enum ComponentFormat { SHELL = "SHELL", }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
EnumDeclaration
export enum PipelineExecutionStartCondition { EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE = "EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE", EXPRESSION_MATCH_ONLY = "EXPRESSION_MATCH_ONLY", }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
EnumDeclaration
export enum PipelineStatus { DISABLED = "DISABLED", ENABLED = "ENABLED", }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
EnumDeclaration
export enum EbsVolumeType { gp2 = "gp2", io1 = "io1", sc1 = "sc1", st1 = "st1", standard = "standard", }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
EnumDeclaration
export enum Ownership { Amazon = "Amazon", Self = "Self", Shared = "Shared", }
justingrant/aws-sdk-js-v3
clients/client-imagebuilder/models/models_0.ts
TypeScript
FunctionDeclaration
function Layout({children}: CommonProps) { return <Wrapper>{children}</Wrapper>; }
JayoonKoo/Green-Challenge-Client
src/components/common/Layout.tsx
TypeScript
ArrowFunction
({children}: ScrollMainProps) => { return ( <ScrollMain> <ScrollWrapper>{children}</ScrollWrapper> </ScrollMain> ); }
JayoonKoo/Green-Challenge-Client
src/components/common/Layout.tsx
TypeScript
InterfaceDeclaration
interface CommonProps { children: React.ReactNode; }
JayoonKoo/Green-Challenge-Client
src/components/common/Layout.tsx
TypeScript
InterfaceDeclaration
// scroll Main interface ScrollMainProps { children: React.ReactNode; }
JayoonKoo/Green-Challenge-Client
src/components/common/Layout.tsx
TypeScript
ArrowFunction
(id: Maybe<string>, convId: Maybe<string>) => { const ctx = useContext(MsgrContext) const intes = ctx.interactions[convId as string] if (!intes) { return undefined } return intes[id as string] }
wamry/berty
js/packages/store/hooks.ts
TypeScript
ArrowFunction
(contactPk: Maybe<string>) => { const ctx = useContext(MsgrContext) const conversations = ctx.conversations const contact = ctx.contacts[contactPk as string] if (!contact) { return undefined } return conversations[contact.conversationPublicKey as string] }
wamry/berty
js/packages/store/hooks.ts
TypeScript
ArrowFunction
() => { const ctx = useMsgrContext() return ctx.account }
wamry/berty
js/packages/store/hooks.ts
TypeScript
ArrowFunction
() => { const ctx = useMsgrContext() return ctx.client }
wamry/berty
js/packages/store/hooks.ts
TypeScript
ArrowFunction
(convPk: Maybe<string>) => { const conv = useConversation(convPk) return useContact(conv?.contactPublicKey) }
wamry/berty
js/packages/store/hooks.ts
TypeScript
ArrowFunction
(contactPk: Maybe<string>) => { const ctx = useMsgrContext() if (!contactPk) { return undefined } return ctx.contacts[contactPk] }
wamry/berty
js/packages/store/hooks.ts
TypeScript
ArrowFunction
() => { const ctx = useMsgrContext() return ctx.contacts }
wamry/berty
js/packages/store/hooks.ts
TypeScript
ArrowFunction
() => { const contacts = useContacts() return Object.values(contacts) as berty.messenger.v1.IContact[] }
wamry/berty
js/packages/store/hooks.ts
TypeScript
ArrowFunction
() => { const contacts = useContactList() return useMemo(() => contacts.filter((c) => c.state === ContactState.IncomingRequest), [contacts]) }
wamry/berty
js/packages/store/hooks.ts
TypeScript
ArrowFunction
() => contacts.filter((c) => c.state === ContactState.IncomingRequest)
wamry/berty
js/packages/store/hooks.ts
TypeScript
ArrowFunction
(c) => c.state === ContactState.IncomingRequest
wamry/berty
js/packages/store/hooks.ts
TypeScript
ArrowFunction
() => { const contacts = useContactList() return useMemo( () => contacts.filter((c) => [ContactState.OutgoingRequestEnqueued, ContactState.OutgoingRequestSent].includes(c.state), ), [contacts], ) }
wamry/berty
js/packages/store/hooks.ts
TypeScript
ArrowFunction
() => contacts.filter((c) => [ContactState.OutgoingRequestEnqueued, ContactState.OutgoingRequestSent].includes(c.state), )
wamry/berty
js/packages/store/hooks.ts
TypeScript
ArrowFunction
(c) => [ContactState.OutgoingRequestEnqueued, ContactState.OutgoingRequestSent].includes(c.state)
wamry/berty
js/packages/store/hooks.ts
TypeScript
ArrowFunction
(searchText: Maybe<string>) => { const contacts = useContactList() if (!searchText) { return [] } return contacts.filter((contact) => contact.displayName?.toLowerCase().includes(searchText.toLowerCase()), ) }
wamry/berty
js/packages/store/hooks.ts
TypeScript
ArrowFunction
(contact) => contact.displayName?.toLowerCase().includes(searchText.toLowerCase())
wamry/berty
js/packages/store/hooks.ts
TypeScript
ArrowFunction
() => { const ctx = useMsgrContext() return Object.values(ctx.conversations) as berty.messenger.v1.IConversation[] }
wamry/berty
js/packages/store/hooks.ts
TypeScript
ArrowFunction
() => { const convs = useConversationList() return useMemo( () => convs.sort( (a, b) => pbDateToNum(b.lastUpdate || b.createdDate) - pbDateToNum(a.lastUpdate || a.createdDate), ), [convs], ) }
wamry/berty
js/packages/store/hooks.ts
TypeScript
ArrowFunction
() => convs.sort( (a, b) => pbDateToNum(b.lastUpdate || b.createdDate) - pbDateToNum(a.lastUpdate || a.createdDate), )
wamry/berty
js/packages/store/hooks.ts
TypeScript
ArrowFunction
(a, b) => pbDateToNum(b.lastUpdate || b.createdDate) - pbDateToNum(a.lastUpdate || a.createdDate)
wamry/berty
js/packages/store/hooks.ts
TypeScript
ArrowFunction
(publicKey: Maybe<string>) => { const ctx = useMsgrContext() if (!publicKey) { return undefined } return ctx.conversations[publicKey] }
wamry/berty
js/packages/store/hooks.ts
TypeScript
ArrowFunction
(publicKey: Maybe<string>) => { const ctx = useMsgrContext() return ctx.interactions[publicKey as string] || {} }
wamry/berty
js/packages/store/hooks.ts
TypeScript