Struct aws_sdk_config::input::PutResourceConfigInput [−][src]
#[non_exhaustive]pub struct PutResourceConfigInput {
pub resource_type: Option<String>,
pub schema_version_id: Option<String>,
pub resource_id: Option<String>,
pub resource_name: Option<String>,
pub configuration: Option<String>,
pub tags: Option<HashMap<String, String>>,
}Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.resource_type: Option<String>The type of the resource. The custom resource type must be registered with CloudFormation.
You cannot use the organization names “amzn”, “amazon”, “alexa”, “custom” with custom resource types. It is the first part of the ResourceType up to the first ::.
schema_version_id: Option<String>Version of the schema registered for the ResourceType in CloudFormation.
resource_id: Option<String>Unique identifier of the resource.
resource_name: Option<String>Name of the resource.
configuration: Option<String>The configuration object of the resource in valid JSON format. It must match the schema registered with CloudFormation.
The configuration JSON must not exceed 64 KB.
Tags associated with the resource.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutResourceConfig, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<PutResourceConfig, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<PutResourceConfig>
Creates a new builder-style object to manufacture PutResourceConfigInput
The type of the resource. The custom resource type must be registered with CloudFormation.
You cannot use the organization names “amzn”, “amazon”, “alexa”, “custom” with custom resource types. It is the first part of the ResourceType up to the first ::.
Version of the schema registered for the ResourceType in CloudFormation.
Unique identifier of the resource.
Name of the resource.
The configuration object of the resource in valid JSON format. It must match the schema registered with CloudFormation.
The configuration JSON must not exceed 64 KB.
Tags associated with the resource.
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for PutResourceConfigInput
impl Send for PutResourceConfigInput
impl Sync for PutResourceConfigInput
impl Unpin for PutResourceConfigInput
impl UnwindSafe for PutResourceConfigInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more
