1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
#[allow(missing_docs)] // documentation missing in model
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct UpdateFeatureGroupInput {
/// <p>The name or Amazon Resource Name (ARN) of the feature group that you're updating.</p>
pub feature_group_name: ::std::option::Option<::std::string::String>,
/// <p>Updates the feature group. Updating a feature group is an asynchronous operation. When you get an HTTP 200 response, you've made a valid request. It takes some time after you've made a valid request for Feature Store to update the feature group.</p>
pub feature_additions: ::std::option::Option<::std::vec::Vec<crate::types::FeatureDefinition>>,
/// <p>Updates the feature group online store configuration.</p>
pub online_store_config: ::std::option::Option<crate::types::OnlineStoreConfigUpdate>,
/// <p>The new throughput configuration for the feature group. You can switch between on-demand and provisioned modes or update the read / write capacity of provisioned feature groups. You can switch a feature group to on-demand only once in a 24 hour period.</p>
pub throughput_config: ::std::option::Option<crate::types::ThroughputConfigUpdate>,
}
impl UpdateFeatureGroupInput {
/// <p>The name or Amazon Resource Name (ARN) of the feature group that you're updating.</p>
pub fn feature_group_name(&self) -> ::std::option::Option<&str> {
self.feature_group_name.as_deref()
}
/// <p>Updates the feature group. Updating a feature group is an asynchronous operation. When you get an HTTP 200 response, you've made a valid request. It takes some time after you've made a valid request for Feature Store to update the feature group.</p>
///
/// If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use `.feature_additions.is_none()`.
pub fn feature_additions(&self) -> &[crate::types::FeatureDefinition] {
self.feature_additions.as_deref().unwrap_or_default()
}
/// <p>Updates the feature group online store configuration.</p>
pub fn online_store_config(&self) -> ::std::option::Option<&crate::types::OnlineStoreConfigUpdate> {
self.online_store_config.as_ref()
}
/// <p>The new throughput configuration for the feature group. You can switch between on-demand and provisioned modes or update the read / write capacity of provisioned feature groups. You can switch a feature group to on-demand only once in a 24 hour period.</p>
pub fn throughput_config(&self) -> ::std::option::Option<&crate::types::ThroughputConfigUpdate> {
self.throughput_config.as_ref()
}
}
impl UpdateFeatureGroupInput {
/// Creates a new builder-style object to manufacture [`UpdateFeatureGroupInput`](crate::operation::update_feature_group::UpdateFeatureGroupInput).
pub fn builder() -> crate::operation::update_feature_group::builders::UpdateFeatureGroupInputBuilder {
crate::operation::update_feature_group::builders::UpdateFeatureGroupInputBuilder::default()
}
}
/// A builder for [`UpdateFeatureGroupInput`](crate::operation::update_feature_group::UpdateFeatureGroupInput).
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct UpdateFeatureGroupInputBuilder {
pub(crate) feature_group_name: ::std::option::Option<::std::string::String>,
pub(crate) feature_additions: ::std::option::Option<::std::vec::Vec<crate::types::FeatureDefinition>>,
pub(crate) online_store_config: ::std::option::Option<crate::types::OnlineStoreConfigUpdate>,
pub(crate) throughput_config: ::std::option::Option<crate::types::ThroughputConfigUpdate>,
}
impl UpdateFeatureGroupInputBuilder {
/// <p>The name or Amazon Resource Name (ARN) of the feature group that you're updating.</p>
/// This field is required.
pub fn feature_group_name(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.feature_group_name = ::std::option::Option::Some(input.into());
self
}
/// <p>The name or Amazon Resource Name (ARN) of the feature group that you're updating.</p>
pub fn set_feature_group_name(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.feature_group_name = input;
self
}
/// <p>The name or Amazon Resource Name (ARN) of the feature group that you're updating.</p>
pub fn get_feature_group_name(&self) -> &::std::option::Option<::std::string::String> {
&self.feature_group_name
}
/// Appends an item to `feature_additions`.
///
/// To override the contents of this collection use [`set_feature_additions`](Self::set_feature_additions).
///
/// <p>Updates the feature group. Updating a feature group is an asynchronous operation. When you get an HTTP 200 response, you've made a valid request. It takes some time after you've made a valid request for Feature Store to update the feature group.</p>
pub fn feature_additions(mut self, input: crate::types::FeatureDefinition) -> Self {
let mut v = self.feature_additions.unwrap_or_default();
v.push(input);
self.feature_additions = ::std::option::Option::Some(v);
self
}
/// <p>Updates the feature group. Updating a feature group is an asynchronous operation. When you get an HTTP 200 response, you've made a valid request. It takes some time after you've made a valid request for Feature Store to update the feature group.</p>
pub fn set_feature_additions(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::FeatureDefinition>>) -> Self {
self.feature_additions = input;
self
}
/// <p>Updates the feature group. Updating a feature group is an asynchronous operation. When you get an HTTP 200 response, you've made a valid request. It takes some time after you've made a valid request for Feature Store to update the feature group.</p>
pub fn get_feature_additions(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::FeatureDefinition>> {
&self.feature_additions
}
/// <p>Updates the feature group online store configuration.</p>
pub fn online_store_config(mut self, input: crate::types::OnlineStoreConfigUpdate) -> Self {
self.online_store_config = ::std::option::Option::Some(input);
self
}
/// <p>Updates the feature group online store configuration.</p>
pub fn set_online_store_config(mut self, input: ::std::option::Option<crate::types::OnlineStoreConfigUpdate>) -> Self {
self.online_store_config = input;
self
}
/// <p>Updates the feature group online store configuration.</p>
pub fn get_online_store_config(&self) -> &::std::option::Option<crate::types::OnlineStoreConfigUpdate> {
&self.online_store_config
}
/// <p>The new throughput configuration for the feature group. You can switch between on-demand and provisioned modes or update the read / write capacity of provisioned feature groups. You can switch a feature group to on-demand only once in a 24 hour period.</p>
pub fn throughput_config(mut self, input: crate::types::ThroughputConfigUpdate) -> Self {
self.throughput_config = ::std::option::Option::Some(input);
self
}
/// <p>The new throughput configuration for the feature group. You can switch between on-demand and provisioned modes or update the read / write capacity of provisioned feature groups. You can switch a feature group to on-demand only once in a 24 hour period.</p>
pub fn set_throughput_config(mut self, input: ::std::option::Option<crate::types::ThroughputConfigUpdate>) -> Self {
self.throughput_config = input;
self
}
/// <p>The new throughput configuration for the feature group. You can switch between on-demand and provisioned modes or update the read / write capacity of provisioned feature groups. You can switch a feature group to on-demand only once in a 24 hour period.</p>
pub fn get_throughput_config(&self) -> &::std::option::Option<crate::types::ThroughputConfigUpdate> {
&self.throughput_config
}
/// Consumes the builder and constructs a [`UpdateFeatureGroupInput`](crate::operation::update_feature_group::UpdateFeatureGroupInput).
pub fn build(
self,
) -> ::std::result::Result<crate::operation::update_feature_group::UpdateFeatureGroupInput, ::aws_smithy_types::error::operation::BuildError>
{
::std::result::Result::Ok(crate::operation::update_feature_group::UpdateFeatureGroupInput {
feature_group_name: self.feature_group_name,
feature_additions: self.feature_additions,
online_store_config: self.online_store_config,
throughput_config: self.throughput_config,
})
}
}