[][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]

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]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Iot1ClickProjectsClient

impl Sync for Iot1ClickProjectsClient

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

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

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self