[][src]Struct rusoto_securityhub::Product

pub struct Product {
    pub activation_url: Option<String>,
    pub categories: Option<Vec<String>>,
    pub company_name: Option<String>,
    pub description: Option<String>,
    pub integration_types: Option<Vec<String>>,
    pub marketplace_url: Option<String>,
    pub product_arn: String,
    pub product_name: Option<String>,
    pub product_subscription_resource_policy: Option<String>,
}

Contains details about a product.

Fields

activation_url: Option<String>

The URL used to activate the product.

categories: Option<Vec<String>>

The categories assigned to the product.

company_name: Option<String>

The name of the company that provides the product.

description: Option<String>

A description of the product.

integration_types: Option<Vec<String>>

The types of integration that the product supports. Available values are the following.

  • SENDFINDINGSTOSECURITYHUB - Indicates that the integration sends findings to Security Hub.

  • RECEIVEFINDINGSFROMSECURITYHUB - Indicates that the integration receives findings from Security Hub.

marketplace_url: Option<String>

The URL for the page that contains more information about the product.

product_arn: String

The ARN assigned to the product.

product_name: Option<String>

The name of the product.

product_subscription_resource_policy: Option<String>

The resource policy associated with the product.

Trait Implementations

impl Clone for Product[src]

impl Debug for Product[src]

impl Default for Product[src]

impl<'de> Deserialize<'de> for Product[src]

impl PartialEq<Product> for Product[src]

impl StructuralPartialEq for Product[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument 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.