pub struct PublishSchemaRequest {
pub development_schema_arn: String,
pub minor_version: Option<String>,
pub name: Option<String>,
pub version: String,
}Fields§
§development_schema_arn: StringThe Amazon Resource Name (ARN) that is associated with the development schema. For more information, see arns.
minor_version: Option<String>The minor version under which the schema will be published. This parameter is recommended. Schemas have both a major and minor version associated with them.
name: Option<String>The new name under which the schema will be published. If this is not provided, the development schema is considered.
version: StringThe major version under which the schema will be published. Schemas have both a major and minor version associated with them.
Trait Implementations§
Source§impl Clone for PublishSchemaRequest
impl Clone for PublishSchemaRequest
Source§fn clone(&self) -> PublishSchemaRequest
fn clone(&self) -> PublishSchemaRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PublishSchemaRequest
impl Debug for PublishSchemaRequest
Source§impl Default for PublishSchemaRequest
impl Default for PublishSchemaRequest
Source§fn default() -> PublishSchemaRequest
fn default() -> PublishSchemaRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for PublishSchemaRequest
impl PartialEq for PublishSchemaRequest
Source§impl Serialize for PublishSchemaRequest
impl Serialize for PublishSchemaRequest
impl StructuralPartialEq for PublishSchemaRequest
Auto Trait Implementations§
impl Freeze for PublishSchemaRequest
impl RefUnwindSafe for PublishSchemaRequest
impl Send for PublishSchemaRequest
impl Sync for PublishSchemaRequest
impl Unpin for PublishSchemaRequest
impl UnwindSafe for PublishSchemaRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more