[][src]Struct rusoto_appconfig::CreateConfigurationProfileRequest

pub struct CreateConfigurationProfileRequest {
    pub application_id: String,
    pub description: Option<String>,
    pub location_uri: String,
    pub name: String,
    pub retrieval_role_arn: Option<String>,
    pub tags: Option<HashMap<String, String>>,
    pub validators: Option<Vec<Validator>>,
}

Fields

application_id: String

The application ID.

description: Option<String>

A description of the configuration profile.

location_uri: String

A URI to locate the configuration. You can specify a Systems Manager (SSM) document, an SSM Parameter Store parameter, or an Amazon S3 object. For an SSM document, specify either the document name in the format ssm-document://<Document_name> or the Amazon Resource Name (ARN). For a parameter, specify either the parameter name in the format ssm-parameter://<Parameter_name> or the ARN. For an Amazon S3 object, specify the URI in the following format: s3://<bucket>/<objectKey> . Here is an example: s3://my-bucket/my-app/us-east-1/my-config.json

name: String

A name for the configuration profile.

retrieval_role_arn: Option<String>

The ARN of an IAM role with permission to access the configuration at the specified LocationUri.

tags: Option<HashMap<String, String>>

Metadata to assign to the configuration profile. Tags help organize and categorize your AppConfig resources. Each tag consists of a key and an optional value, both of which you define.

validators: Option<Vec<Validator>>

A list of methods for validating the configuration.

Trait Implementations

impl Clone for CreateConfigurationProfileRequest[src]

impl Debug for CreateConfigurationProfileRequest[src]

impl Default for CreateConfigurationProfileRequest[src]

impl PartialEq<CreateConfigurationProfileRequest> for CreateConfigurationProfileRequest[src]

impl Serialize for CreateConfigurationProfileRequest[src]

impl StructuralPartialEq for CreateConfigurationProfileRequest[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.