[][src]Struct rusoto_iot1click_projects::Iot1ClickProjectsClient

pub struct Iot1ClickProjectsClient { /* fields omitted */ }

A client for the AWS IoT 1-Click Projects API.

Methods

impl Iot1ClickProjectsClient[src]

pub fn new(region: Region) -> Iot1ClickProjectsClient[src]

Creates a client backed by the default tokio event loop.

The client will use the default credentials provider and tls client.

pub fn new_with<P, D>(
    request_dispatcher: D,
    credentials_provider: P,
    region: Region
) -> Iot1ClickProjectsClient where
    P: ProvideAwsCredentials + Send + Sync + 'static,
    P::Future: Send,
    D: DispatchSignedRequest + Send + Sync + 'static,
    D::Future: Send
[src]

pub fn new_with_client(
    client: Client,
    region: Region
) -> Iot1ClickProjectsClient
[src]

Trait Implementations

impl Iot1ClickProjects for Iot1ClickProjectsClient[src]

fn associate_device_with_placement(
    &self,
    input: AssociateDeviceWithPlacementRequest
) -> RusotoFuture<AssociateDeviceWithPlacementResponse, AssociateDeviceWithPlacementError>
[src]

Associates a physical device with a placement.

fn create_placement(
    &self,
    input: CreatePlacementRequest
) -> RusotoFuture<CreatePlacementResponse, CreatePlacementError>
[src]

Creates an empty placement.

fn create_project(
    &self,
    input: CreateProjectRequest
) -> RusotoFuture<CreateProjectResponse, CreateProjectError>
[src]

Creates an empty project with a placement template. A project contains zero or more placements that adhere to the placement template defined in the project.

fn delete_placement(
    &self,
    input: DeletePlacementRequest
) -> RusotoFuture<DeletePlacementResponse, DeletePlacementError>
[src]

Deletes a placement. To delete a placement, it must not have any devices associated with it.

When you delete a placement, all associated data becomes irretrievable.

fn delete_project(
    &self,
    input: DeleteProjectRequest
) -> RusotoFuture<DeleteProjectResponse, DeleteProjectError>
[src]

Deletes a project. To delete a project, it must not have any placements associated with it.

When you delete a project, all associated data becomes irretrievable.

fn describe_placement(
    &self,
    input: DescribePlacementRequest
) -> RusotoFuture<DescribePlacementResponse, DescribePlacementError>
[src]

Describes a placement in a project.

fn describe_project(
    &self,
    input: DescribeProjectRequest
) -> RusotoFuture<DescribeProjectResponse, DescribeProjectError>
[src]

Returns an object describing a project.

fn disassociate_device_from_placement(
    &self,
    input: DisassociateDeviceFromPlacementRequest
) -> RusotoFuture<DisassociateDeviceFromPlacementResponse, DisassociateDeviceFromPlacementError>
[src]

Removes a physical device from a placement.

fn get_devices_in_placement(
    &self,
    input: GetDevicesInPlacementRequest
) -> RusotoFuture<GetDevicesInPlacementResponse, GetDevicesInPlacementError>
[src]

Returns an object enumerating the devices in a placement.

fn list_placements(
    &self,
    input: ListPlacementsRequest
) -> RusotoFuture<ListPlacementsResponse, ListPlacementsError>
[src]

Lists the placement(s) of a project.

fn list_projects(
    &self,
    input: ListProjectsRequest
) -> RusotoFuture<ListProjectsResponse, ListProjectsError>
[src]

Lists the AWS IoT 1-Click project(s) associated with your AWS account and region.

fn list_tags_for_resource(
    &self,
    input: ListTagsForResourceRequest
) -> RusotoFuture<ListTagsForResourceResponse, ListTagsForResourceError>
[src]

Lists the tags (metadata key/value pairs) which you have assigned to the resource.

fn tag_resource(
    &self,
    input: TagResourceRequest
) -> RusotoFuture<TagResourceResponse, TagResourceError>
[src]

Creates or modifies tags for a resource. Tags are key/value pairs (metadata) that can be used to manage a resource. For more information, see AWS Tagging Strategies.

fn untag_resource(
    &self,
    input: UntagResourceRequest
) -> RusotoFuture<UntagResourceResponse, UntagResourceError>
[src]

Removes one or more tags (metadata key/value pairs) from a resource.

fn update_placement(
    &self,
    input: UpdatePlacementRequest
) -> RusotoFuture<UpdatePlacementResponse, UpdatePlacementError>
[src]

Updates a placement with the given attributes. To clear an attribute, pass an empty value (i.e., "").

fn update_project(
    &self,
    input: UpdateProjectRequest
) -> RusotoFuture<UpdateProjectResponse, UpdateProjectError>
[src]

Updates a project associated with your AWS account and region. With the exception of device template names, you can pass just the values that need to be updated because the update request will change only the values that are provided. To clear a value, pass the empty string (i.e., "").

impl Clone for Iot1ClickProjectsClient[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,