Struct aws_sdk_codebuild::client::Client[][src]

pub struct Client<C = DynConnector, M = DefaultMiddleware, R = Standard> { /* fields omitted */ }
Expand description

Client for AWS CodeBuild

Client for invoking operations on AWS CodeBuild. Each operation on AWS CodeBuild is a method on this this struct. .send() MUST be invoked on the generated operations to dispatch the request to the service.

Examples

Constructing a client and invoking an operation

    // create a shared configuration. This can be used & shared between multiple service clients.
    let shared_config = aws_config::load_from_env().await;
    let client = aws_sdk_codebuild::Client::new(&shared_config);
    // invoke an operation
    /* let rsp = client
        .<operation_name>().
        .<param>("some value")
        .send().await; */

Constructing a client with custom configuration

use aws_config::RetryConfig;
    let shared_config = aws_config::load_from_env().await;
    let config = aws_sdk_codebuild::config::Builder::from(&shared_config)
        .retry_config(RetryConfig::disabled())
        .build();
    let client = aws_sdk_codebuild::Client::from_conf(config);

Implementations

Creates a client with the given service configuration.

Returns the client’s configuration.

Constructs a fluent builder for the BatchDeleteBuilds operation.

See BatchDeleteBuilds for more information about the operation and its arguments.

Constructs a fluent builder for the BatchGetBuildBatches operation.

See BatchGetBuildBatches for more information about the operation and its arguments.

Constructs a fluent builder for the BatchGetBuilds operation.

See BatchGetBuilds for more information about the operation and its arguments.

Constructs a fluent builder for the BatchGetProjects operation.

See BatchGetProjects for more information about the operation and its arguments.

Constructs a fluent builder for the BatchGetReportGroups operation.

See BatchGetReportGroups for more information about the operation and its arguments.

Constructs a fluent builder for the BatchGetReports operation.

See BatchGetReports for more information about the operation and its arguments.

Constructs a fluent builder for the CreateProject operation.

See CreateProject for more information about the operation and its arguments.

Constructs a fluent builder for the CreateReportGroup operation.

See CreateReportGroup for more information about the operation and its arguments.

Constructs a fluent builder for the CreateWebhook operation.

See CreateWebhook for more information about the operation and its arguments.

Constructs a fluent builder for the DeleteBuildBatch operation.

See DeleteBuildBatch for more information about the operation and its arguments.

Constructs a fluent builder for the DeleteProject operation.

See DeleteProject for more information about the operation and its arguments.

Constructs a fluent builder for the DeleteReport operation.

See DeleteReport for more information about the operation and its arguments.

Constructs a fluent builder for the DeleteReportGroup operation.

See DeleteReportGroup for more information about the operation and its arguments.

Constructs a fluent builder for the DeleteResourcePolicy operation.

See DeleteResourcePolicy for more information about the operation and its arguments.

Constructs a fluent builder for the DeleteSourceCredentials operation.

See DeleteSourceCredentials for more information about the operation and its arguments.

Constructs a fluent builder for the DeleteWebhook operation.

See DeleteWebhook for more information about the operation and its arguments.

Constructs a fluent builder for the DescribeCodeCoverages operation.

See DescribeCodeCoverages for more information about the operation and its arguments. This operation supports pagination. See into_paginator().

Constructs a fluent builder for the DescribeTestCases operation.

See DescribeTestCases for more information about the operation and its arguments. This operation supports pagination. See into_paginator().

Constructs a fluent builder for the GetReportGroupTrend operation.

See GetReportGroupTrend for more information about the operation and its arguments.

Constructs a fluent builder for the GetResourcePolicy operation.

See GetResourcePolicy for more information about the operation and its arguments.

Constructs a fluent builder for the ImportSourceCredentials operation.

See ImportSourceCredentials for more information about the operation and its arguments.

Constructs a fluent builder for the InvalidateProjectCache operation.

See InvalidateProjectCache for more information about the operation and its arguments.

Constructs a fluent builder for the ListBuildBatches operation.

See ListBuildBatches for more information about the operation and its arguments. This operation supports pagination. See into_paginator().

Constructs a fluent builder for the ListBuildBatchesForProject operation.

See ListBuildBatchesForProject for more information about the operation and its arguments. This operation supports pagination. See into_paginator().

Constructs a fluent builder for the ListBuilds operation.

See ListBuilds for more information about the operation and its arguments. This operation supports pagination. See into_paginator().

Constructs a fluent builder for the ListBuildsForProject operation.

See ListBuildsForProject for more information about the operation and its arguments. This operation supports pagination. See into_paginator().

Constructs a fluent builder for the ListCuratedEnvironmentImages operation.

See ListCuratedEnvironmentImages for more information about the operation and its arguments.

Constructs a fluent builder for the ListProjects operation.

See ListProjects for more information about the operation and its arguments. This operation supports pagination. See into_paginator().

Constructs a fluent builder for the ListReportGroups operation.

See ListReportGroups for more information about the operation and its arguments. This operation supports pagination. See into_paginator().

Constructs a fluent builder for the ListReports operation.

See ListReports for more information about the operation and its arguments. This operation supports pagination. See into_paginator().

Constructs a fluent builder for the ListReportsForReportGroup operation.

See ListReportsForReportGroup for more information about the operation and its arguments. This operation supports pagination. See into_paginator().

Constructs a fluent builder for the ListSharedProjects operation.

See ListSharedProjects for more information about the operation and its arguments. This operation supports pagination. See into_paginator().

Constructs a fluent builder for the ListSharedReportGroups operation.

See ListSharedReportGroups for more information about the operation and its arguments. This operation supports pagination. See into_paginator().

Constructs a fluent builder for the ListSourceCredentials operation.

See ListSourceCredentials for more information about the operation and its arguments.

Constructs a fluent builder for the PutResourcePolicy operation.

See PutResourcePolicy for more information about the operation and its arguments.

Constructs a fluent builder for the RetryBuild operation.

See RetryBuild for more information about the operation and its arguments.

Constructs a fluent builder for the RetryBuildBatch operation.

See RetryBuildBatch for more information about the operation and its arguments.

Constructs a fluent builder for the StartBuild operation.

See StartBuild for more information about the operation and its arguments.

Constructs a fluent builder for the StartBuildBatch operation.

See StartBuildBatch for more information about the operation and its arguments.

Constructs a fluent builder for the StopBuild operation.

See StopBuild for more information about the operation and its arguments.

Constructs a fluent builder for the StopBuildBatch operation.

See StopBuildBatch for more information about the operation and its arguments.

Constructs a fluent builder for the UpdateProject operation.

See UpdateProject for more information about the operation and its arguments.

Constructs a fluent builder for the UpdateProjectVisibility operation.

See UpdateProjectVisibility for more information about the operation and its arguments.

Constructs a fluent builder for the UpdateReportGroup operation.

See UpdateReportGroup for more information about the operation and its arguments.

Constructs a fluent builder for the UpdateWebhook operation.

See UpdateWebhook for more information about the operation and its arguments.

Creates a client with the given service config and connector override.

Creates a new client from a shared config.

Creates a new client from the service Config.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more