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 recipe.</p> */ blockDeviceMappings?: InstanceBlockDeviceMapping[]; /** * <p>The working directory to be used during build and test workflows.</p> */ workingDirectory?: string; /** * <p>The components of the image recipe.</p> */ components?: ComponentConfiguration[]; /** * <p>The description of the image recipe.</p> */ description?: string; /** * <p>The name of the image recipe.</p> */ name?: string; /** * <p>The parent image of the image recipe.</p> */ parentImage?: string; /** * <p>The tags of the image recipe.</p> */ tags?: { [key: string]: string }; /** * <p>The version of the image recipe.</p> */ version?: string; /** * <p>The Amazon Resource Name (ARN) of the image recipe.</p> */ arn?: string; /** * <p>The platform of the image recipe.</p> */ platform?: Platform | string; }
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?: string[]; /** * <p>The tags of the infrastructure configuration.</p> */ tags?: { [key: string]: string }; /** * <p>The date on which the infrastructure configuration was last updated.</p> */ dateUpdated?: string; /** * <p>The terminate instance on failure configuration of the infrastructure configuration.</p> */ terminateInstanceOnFailure?: boolean; /** * <p>The subnet ID of the infrastructure configuration.</p> */ subnetId?: string; /** * <p>The instance profile of the infrastructure configuration.</p> */ instanceProfileName?: string; /** * <p>The EC2 key pair of the infrastructure configuration.</p> */ keyPair?: string; /** * <p>The name of the infrastructure configuration.</p> */ name?: string; /** * <p>The SNS topic Amazon Resource Name (ARN) of the infrastructure configuration.</p> */ snsTopicArn?: string; /** * <p>The Amazon Resource Name (ARN) of the infrastructure configuration.</p> */ arn?: string; /** * <p>The tags attached to the resource created by Image Builder.</p> */ resourceTags?: { [key: string]: string }; /** * <p>The date on which the infrastructure configuration was created.</p> */ dateCreated?: string; /** * <p>The logging configuration of the infrastructure configuration.</p> */ logging?: Logging; /** * <p>The instance types of the infrastructure configuration.</p> */ instanceTypes?: string[]; }
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; /** * <p>The output resources produced when creating this image.</p> */ outputResources?: OutputResources; /** * <p>The Amazon Resource Name (ARN) of the image pipeline that created this image.</p> */ sourcePipelineArn?: string; /** * <p>The platform of the image.</p> */ platform?: Platform | string; /** * <p>The tags of the image.</p> */ tags?: { [key: string]: string }; /** * <p>The semantic version of the image.</p> */ version?: string; /** * <p>The image tests configuration used when creating this image.</p> */ imageTestsConfiguration?: ImageTestsConfiguration; /** * <p>The infrastructure used when creating this image.</p> */ infrastructureConfiguration?: InfrastructureConfiguration; /** * <p>The image recipe used when creating the image.</p> */ imageRecipe?: ImageRecipe; /** * <p>The date on which this image was created.</p> */ dateCreated?: string; /** * <p>The operating system version of the instance. For example, Amazon Linux 2, Ubuntu 18, or Microsoft Windows Server 2019. </p> */ osVersion?: string; /** * <p>The state of the image.</p> */ state?: ImageState; /** * <p>The name of the image.</p> */ name?: string; /** * <p> Collects additional information about the image being created, including the operating system (OS) version and package list. This information is used to enhance the overall experience of using EC2 Image Builder. Enabled by default. </p> */ enhancedImageMetadataEnabled?: boolean; /** * <p>The Amazon Resource Name (ARN) of the image.</p> */ arn?: 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 about the image being created, including the operating system (OS) version and package list. This information is used to enhance the overall experience of using EC2 Image Builder. Enabled by default. </p> */ enhancedImageMetadataEnabled?: boolean; /** * <p>The tags of this image pipeline.</p> */ tags?: { [key: string]: string }; /** * <p>The Amazon Resource Name (ARN) of the distribution configuration associated with this image pipeline.</p> */ distributionConfigurationArn?: string; /** * <p>The date on which this image pipeline was created.</p> */ dateCreated?: string; /** * <p>The schedule of the image pipeline.</p> */ schedule?: Schedule; /** * <p>The image tests configuration of the image pipeline.</p> */ imageTestsConfiguration?: ImageTestsConfiguration; /** * <p>The platform of the image pipeline.</p> */ platform?: Platform | string; /** * <p>The date on which this image pipeline was last updated.</p> */ dateUpdated?: string; /** * <p>The name of the image pipeline.</p> */ name?: string; /** * <p>The date on which this image pipeline will next be run.</p> */ dateNextRun?: string; /** * <p>The description of the image pipeline.</p> */ description?: string; /** * <p>The date on which this image pipeline was last run.</p> */ dateLastRun?: string; /** * <p>The Amazon Resource Name (ARN) of the infrastructure configuration associated with this image pipeline.</p> */ infrastructureConfigurationArn?: string; /** * <p>The Amazon Resource Name (ARN) of the image recipe associated with this image pipeline.</p> */ imageRecipeArn?: string; }
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. </p> */ requestId?: string; }
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> The name of the component. </p> */ name: string | undefined; /** * <p>The uri of the component. Must be an S3 URL and the requester must have permission to access the S3 bucket. If you use S3, you can specify component content up to your service quota. Either <code>data</code> or <code>uri</code> can be used to specify the data within the component. </p> */ uri?: string; /** * <p>The platform of the component. </p> */ platform: Platform | string | undefined; /** * <p>The type of the component denotes whether the component is used to build the image or only to test it. </p> */ type: ComponentType | string | undefined; /** * <p>The description of the component. Describes the contents of the component. </p> */ description?: string; /** * <p>The tags of the component. </p> */ tags?: { [key: string]: string }; /** * <p>The idempotency token of the component. </p> */ clientToken?: string; /** * <p>The change description of the component. Describes what change has been made in this version, or what makes this version different from other versions of this component. </p> */ changeDescription?: string; /** * <p>The ID of the KMS key that should be used to encrypt this component. </p> */ kmsKeyId?: string; /** * <p>The format of the resource that you want to import as a component. </p> */ format: ComponentFormat | string | undefined; /** * <p>The data of the component. Used to specify the data inline. Either <code>data</code> or <code>uri</code> can be used to specify the data within the component.</p> */ data?: string; }
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 component. </p> */ componentBuildVersionArn?: string; }
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 component version Amazon Resource Name (ARN) whose versions you want to list. </p> */ componentVersionArn: string | undefined; }
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. Use this token with the next request to retrieve additional objects. </p> */ nextToken?: string; /** * <p>The list of component summaries for the specified semantic version. </p> */ componentSummaryList?: ComponentSummary[]; }
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 to view components owned by yourself, by Amazon, or those components that have been shared with you by other customers. </p> */ owner?: Ownership | string; /** * <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[]; }
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 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?: string; }
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 filters. </p> <ul> <li> <p> <code>name</code> - The name of this distribution configuration.</p> </li> </ul> */ filters?: Filter[]; }
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?: string; /** * <p>The list of distributions. </p> */ distributionConfigurationSummaryList?: DistributionConfigurationSummary[]; /** * <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 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 image whose build versions you want to retrieve. </p> */ imageVersionArn: string | undefined; /** * <p>The maximum items to return in a request. </p> */ maxResults?: number; }
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> */ tags?: { [key: string]: string }; /** * <p>The owner of the image.</p> */ owner?: string; /** * <p>The operating system version of the instance. For example, Amazon Linux 2, Ubuntu 18, or Microsoft Windows Server 2019. </p> */ osVersion?: string; /** * <p>The version of the image.</p> */ version?: string; /** * <p>The platform of the image.</p> */ platform?: Platform | string; /** * <p>The Amazon Resource Name (ARN) of the image.</p> */ arn?: string; /** * <p>The name of the image.</p> */ name?: string; /** * <p>The state of the image.</p> */ state?: ImageState; }
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 token with the next request to retrieve additional objects. </p> */ nextToken?: 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 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. </p> */ filters?: Filter[]; /** * <p>A token to specify where to start paginating. This is the NextToken from a previously truncated response. </p> */ nextToken?: string; }
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. Use this token with the next request to retrieve additional objects. </p> */ nextToken?: string; /** * <p>The list of images built by this pipeline. </p> */ imageSummaryList?: ImageSummary[]; }
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> */ maxResults?: number; }
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 this token with the next request to retrieve additional objects. </p> */ nextToken?: string; /** * <p>The list of image pipelines. </p> */ imagePipelineList?: ImagePipeline[]; }
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 you want to view image recipes owned by yourself, by Amazon, or those image recipes that have been shared with you by other customers. </p> */ owner?: Ownership | string; /** * <p>The filters. </p> */ filters?: Filter[]; /** * <p>A token to specify where to start paginating. This is the NextToken from a previously truncated response. </p> */ nextToken?: string; }
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> */ name?: string; /** * <p>The parent image of the image recipe.</p> */ parentImage?: string; /** * <p>The owner of the image recipe.</p> */ owner?: string; /** * <p>The Amazon Resource Name (ARN) of the image recipe.</p> */ arn?: string; /** * <p>The date on which this image recipe was created.</p> */ dateCreated?: string; }
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 token with the next request to retrieve additional objects. </p> */ nextToken?: string; /** * <p>The list of image pipelines. </p> */ imageRecipeSummaryList?: ImageRecipeSummary[]; }
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 images you want to list. By default, this request will only show images owned by your account. You can use this field to specify if you want to view images owned by yourself, by Amazon, or those images that have been shared with you by other customers. </p> */ owner?: Ownership | string; /** * <p>The filters. </p> */ filters?: Filter[]; }
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> */ osVersion?: string; /** * <p>The name of the image semantic version.</p> */ name?: string; /** * <p>The semantic version of the image semantic version.</p> */ version?: string; /** * <p>The Amazon Resource Name (ARN) of the image semantic version.</p> */ arn?: string; /** * <p>The owner of the image semantic version.</p> */ owner?: string; /** * <p>The date at which this image semantic version was created.</p> */ dateCreated?: string; }
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 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?: string; }
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 truncated response. </p> */ nextToken?: string; }
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]: string }; /** * <p>The date on which the infrastructure configuration was last updated.</p> */ dateUpdated?: string; /** * <p>The name of the infrastructure configuration.</p> */ name?: string; /** * <p>The Amazon Resource Name (ARN) of the infrastructure configuration.</p> */ arn?: string; /** * <p>The tags attached to the image created by Image Builder.</p> */ resourceTags?: { [key: string]: string }; /** * <p>The date on which the infrastructure configuration was created.</p> */ dateCreated?: string; }
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[]; /** * <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?: string; }
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 image that was created by this request.</p> */ imageBuildVersionArn?: string; }
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?: string; /** * <p>The distributions of the distribution configuration. </p> */ distributions: Distribution[] | undefined; /** * <p>The idempotency token of the distribution configuration. </p> */ clientToken?: string; }
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?: string; /** * <p>The idempotency token used to make this request idempotent. </p> */ clientToken?: string; }
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?: PipelineStatus | string; /** * <p>The image test configuration of the image pipeline. </p> */ imageTestsConfiguration?: ImageTestsConfiguration; /** * <p> Collects additional information about the image being created, including the operating system (OS) version and package list. This information is used to enhance the overall experience of using EC2 Image Builder. Enabled by default. </p> */ enhancedImageMetadataEnabled?: boolean; /** * <p>The Amazon Resource Name (ARN) of the distribution configuration that will be used to configure and distribute images updated by this image pipeline. </p> */ distributionConfigurationArn?: string; /** * <p>The Amazon Resource Name (ARN) of the infrastructure configuration that will be used to build images updated by this image pipeline. </p> */ infrastructureConfigurationArn: string | undefined; /** * <p>The Amazon Resource Name (ARN) of the image pipeline that you want to update. </p> */ imagePipelineArn: string | undefined; /** * <p>The schedule of the image pipeline. </p> */ schedule?: Schedule; /** * <p>The Amazon Resource Name (ARN) of the image recipe that will be used to configure images updated by this image pipeline. </p> */ imageRecipeArn: string | undefined; }
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 pipeline that was updated by this request. </p> */ imagePipelineArn?: string; }
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> */ terminateInstanceOnFailure?: boolean; /** * <p>The tags attached to the resource created by Image Builder.</p> */ resourceTags?: { [key: string]: string }; /** * <p>The subnet ID to place the instance used to customize your EC2 AMI in. </p> */ subnetId?: string; /** * <p>The description of the infrastructure configuration. </p> */ description?: string; /** * <p>The key pair of the infrastructure configuration. This can be used to log on to and debug the instance used to create your image. </p> */ keyPair?: string; /** * <p>The instance profile to associate with the instance used to customize your EC2 AMI. </p> */ instanceProfileName: string | undefined; /** * <p>The idempotency token used to make this request idempotent. </p> */ clientToken?: string; /** * <p>The logging configuration of the infrastructure configuration. </p> */ logging?: Logging; /** * <p>The instance types of the infrastructure configuration. You can specify one or more instance types to use for this build. The service will pick one of these instance types based on availability. </p> */ instanceTypes?: string[]; /** * <p>The SNS topic on which to send image build events. </p> */ snsTopicArn?: string; /** * <p>The Amazon Resource Name (ARN) of the infrastructure configuration that you want to update. </p> */ infrastructureConfigurationArn: string | undefined; /** * <p>The security group IDs to associate with the instance used to customize your EC2 AMI. </p> */ securityGroupIds?: string[]; }
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> */ infrastructureConfigurationArn?: 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
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