#[non_exhaustive]pub struct CreateScheduleGroupInput {
pub name: Option<String>,
pub tags: Option<Vec<Tag>>,
pub client_token: Option<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.name: Option<String>The name of the schedule group that you are creating.
The list of tags to associate with the schedule group.
client_token: Option<String>Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not specify a client token, EventBridge Scheduler uses a randomly generated token for the request to ensure idempotency.
Implementations§
source§impl CreateScheduleGroupInput
impl CreateScheduleGroupInput
The list of tags to associate with the schedule group.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none().
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
Unique, case-sensitive identifier you provide to ensure the idempotency of the request. If you do not specify a client token, EventBridge Scheduler uses a randomly generated token for the request to ensure idempotency.
source§impl CreateScheduleGroupInput
impl CreateScheduleGroupInput
sourcepub fn builder() -> CreateScheduleGroupInputBuilder
pub fn builder() -> CreateScheduleGroupInputBuilder
Creates a new builder-style object to manufacture CreateScheduleGroupInput.
Trait Implementations§
source§impl Clone for CreateScheduleGroupInput
impl Clone for CreateScheduleGroupInput
source§fn clone(&self) -> CreateScheduleGroupInput
fn clone(&self) -> CreateScheduleGroupInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for CreateScheduleGroupInput
impl Debug for CreateScheduleGroupInput
source§impl PartialEq for CreateScheduleGroupInput
impl PartialEq for CreateScheduleGroupInput
source§fn eq(&self, other: &CreateScheduleGroupInput) -> bool
fn eq(&self, other: &CreateScheduleGroupInput) -> bool
self and other values to be equal, and is used
by ==.