[][src]Struct rusoto_lakeformation::RegisterResourceRequest

pub struct RegisterResourceRequest {
    pub resource_arn: String,
    pub role_arn: Option<String>,
    pub use_service_linked_role: Option<bool>,
}

Fields

resource_arn: String

The Amazon Resource Name (ARN) of the resource that you want to register.

role_arn: Option<String>

The identifier for the role that registers the resource.

use_service_linked_role: Option<bool>

Designates an AWS Identity and Access Management (IAM) service-linked role by registering this role with the Data Catalog. A service-linked role is a unique type of IAM role that is linked directly to Lake Formation.

For more information, see Using Service-Linked Roles for Lake Formation.

Trait Implementations

impl Clone for RegisterResourceRequest[src]

impl Debug for RegisterResourceRequest[src]

impl Default for RegisterResourceRequest[src]

impl PartialEq<RegisterResourceRequest> for RegisterResourceRequest[src]

impl Serialize for RegisterResourceRequest[src]

impl StructuralPartialEq for RegisterResourceRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.