#[non_exhaustive]pub struct CreateConfigurationProfileInput { /* private fields */ }Implementations§
source§impl CreateConfigurationProfileInput
impl CreateConfigurationProfileInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateConfigurationProfile, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateConfigurationProfile, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateConfigurationProfile>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateConfigurationProfileInput.
source§impl CreateConfigurationProfileInput
impl CreateConfigurationProfileInput
sourcepub fn application_id(&self) -> Option<&str>
pub fn application_id(&self) -> Option<&str>
The application ID.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description of the configuration profile.
sourcepub fn location_uri(&self) -> Option<&str>
pub fn location_uri(&self) -> Option<&str>
A URI to locate the configuration. You can specify the AppConfig hosted configuration store, Systems Manager (SSM) document, an SSM Parameter Store parameter, or an Amazon S3 object. For the hosted configuration store and for feature flags, specify hosted. For an SSM document, specify either the document name in the format ssm-document://
or the Amazon Resource Name (ARN). For a parameter, specify either the parameter name in the format ssm-parameter://
or the ARN. For an Amazon S3 object, specify the URI in the following format: s3://
. Here is an example: s3://my-bucket/my-app/us-east-1/my-config.json
sourcepub fn retrieval_role_arn(&self) -> Option<&str>
pub fn retrieval_role_arn(&self) -> Option<&str>
The ARN of an IAM role with permission to access the configuration at the specified LocationUri.
A retrieval role ARN is not required for configurations stored in the AppConfig hosted configuration store. It is required for all other sources that store your configuration.
sourcepub fn validators(&self) -> Option<&[Validator]>
pub fn validators(&self) -> Option<&[Validator]>
A list of methods for validating the configuration.
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.
sourcepub fn type(&self) -> Option<&str>
pub fn type(&self) -> Option<&str>
The type of configurations contained in the profile. AppConfig supports feature flags and freeform configurations. We recommend you create feature flag configurations to enable or disable new features and freeform configurations to distribute configurations to an application. When calling this API, enter one of the following values for Type:
AWS.AppConfig.FeatureFlags
AWS.Freeform
Trait Implementations§
source§impl Clone for CreateConfigurationProfileInput
impl Clone for CreateConfigurationProfileInput
source§fn clone(&self) -> CreateConfigurationProfileInput
fn clone(&self) -> CreateConfigurationProfileInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq<CreateConfigurationProfileInput> for CreateConfigurationProfileInput
impl PartialEq<CreateConfigurationProfileInput> for CreateConfigurationProfileInput
source§fn eq(&self, other: &CreateConfigurationProfileInput) -> bool
fn eq(&self, other: &CreateConfigurationProfileInput) -> bool
self and other values to be equal, and is used
by ==.