Struct aws_sdk_config::input::PutResourceConfigInput
source · [−]#[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
sourceimpl PutResourceConfigInput
impl PutResourceConfigInput
sourcepub 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>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture PutResourceConfigInput
sourceimpl PutResourceConfigInput
impl PutResourceConfigInput
sourcepub fn resource_type(&self) -> Option<&str>
pub fn resource_type(&self) -> Option<&str>
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 ::.
sourcepub fn schema_version_id(&self) -> Option<&str>
pub fn schema_version_id(&self) -> Option<&str>
Version of the schema registered for the ResourceType in CloudFormation.
sourcepub fn resource_id(&self) -> Option<&str>
pub fn resource_id(&self) -> Option<&str>
Unique identifier of the resource.
sourcepub fn resource_name(&self) -> Option<&str>
pub fn resource_name(&self) -> Option<&str>
Name of the resource.
sourcepub fn configuration(&self) -> Option<&str>
pub fn configuration(&self) -> Option<&str>
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
sourceimpl Clone for PutResourceConfigInput
impl Clone for PutResourceConfigInput
sourcefn clone(&self) -> PutResourceConfigInput
fn clone(&self) -> PutResourceConfigInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for PutResourceConfigInput
impl Debug for PutResourceConfigInput
sourceimpl PartialEq<PutResourceConfigInput> for PutResourceConfigInput
impl PartialEq<PutResourceConfigInput> for PutResourceConfigInput
sourcefn eq(&self, other: &PutResourceConfigInput) -> bool
fn eq(&self, other: &PutResourceConfigInput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &PutResourceConfigInput) -> bool
fn ne(&self, other: &PutResourceConfigInput) -> bool
This method tests for !=.
impl StructuralPartialEq for PutResourceConfigInput
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more