Class: Aws::SecurityIR::Types::UpdateMembershipRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityIR::Types::UpdateMembershipRequest
- Defined in:
- gems/aws-sdk-securityir/lib/aws-sdk-securityir/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[:membership_name]
Instance Attribute Summary collapse
-
#incident_response_team ⇒ Array<Types::IncidentResponder>
Optional element for UpdateMembership to update the membership name.
-
#membership_accounts_configurations_update ⇒ Types::MembershipAccountsConfigurationsUpdate
The
membershipAccountsConfigurationsUpdate
field in theUpdateMembershipRequest
structure allows you to update the configuration settings for accounts within a membership. -
#membership_id ⇒ String
Required element for UpdateMembership to identify the membership to update.
-
#membership_name ⇒ String
Optional element for UpdateMembership to update the membership name.
-
#opt_in_features ⇒ Array<Types::OptInFeature>
Optional element for UpdateMembership to enable or disable opt-in features for the service.
-
#undo_membership_cancellation ⇒ Boolean
The
undoMembershipCancellation
parameter is a boolean flag that indicates whether to reverse a previously requested membership cancellation.
Instance Attribute Details
#incident_response_team ⇒ Array<Types::IncidentResponder>
Optional element for UpdateMembership to update the membership name.
1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 |
# File 'gems/aws-sdk-securityir/lib/aws-sdk-securityir/types.rb', line 1683 class UpdateMembershipRequest < Struct.new( :membership_id, :membership_name, :incident_response_team, :opt_in_features, :membership_accounts_configurations_update, :undo_membership_cancellation) SENSITIVE = [:membership_name] include Aws::Structure end |
#membership_accounts_configurations_update ⇒ Types::MembershipAccountsConfigurationsUpdate
The membershipAccountsConfigurationsUpdate
field in the
UpdateMembershipRequest
structure allows you to update the
configuration settings for accounts within a membership.
This field is optional and contains a structure of type
MembershipAccountsConfigurationsUpdate
that specifies the updated
account configurations for the membership.
1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 |
# File 'gems/aws-sdk-securityir/lib/aws-sdk-securityir/types.rb', line 1683 class UpdateMembershipRequest < Struct.new( :membership_id, :membership_name, :incident_response_team, :opt_in_features, :membership_accounts_configurations_update, :undo_membership_cancellation) SENSITIVE = [:membership_name] include Aws::Structure end |
#membership_id ⇒ String
Required element for UpdateMembership to identify the membership to update.
1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 |
# File 'gems/aws-sdk-securityir/lib/aws-sdk-securityir/types.rb', line 1683 class UpdateMembershipRequest < Struct.new( :membership_id, :membership_name, :incident_response_team, :opt_in_features, :membership_accounts_configurations_update, :undo_membership_cancellation) SENSITIVE = [:membership_name] include Aws::Structure end |
#membership_name ⇒ String
Optional element for UpdateMembership to update the membership name.
1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 |
# File 'gems/aws-sdk-securityir/lib/aws-sdk-securityir/types.rb', line 1683 class UpdateMembershipRequest < Struct.new( :membership_id, :membership_name, :incident_response_team, :opt_in_features, :membership_accounts_configurations_update, :undo_membership_cancellation) SENSITIVE = [:membership_name] include Aws::Structure end |
#opt_in_features ⇒ Array<Types::OptInFeature>
Optional element for UpdateMembership to enable or disable opt-in features for the service.
1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 |
# File 'gems/aws-sdk-securityir/lib/aws-sdk-securityir/types.rb', line 1683 class UpdateMembershipRequest < Struct.new( :membership_id, :membership_name, :incident_response_team, :opt_in_features, :membership_accounts_configurations_update, :undo_membership_cancellation) SENSITIVE = [:membership_name] include Aws::Structure end |
#undo_membership_cancellation ⇒ Boolean
The undoMembershipCancellation
parameter is a boolean flag that
indicates whether to reverse a previously requested membership
cancellation. When set to true, this will revoke the cancellation
request and maintain the membership status.
This parameter is optional and can be used in scenarios where you need to restore a membership that was marked for cancellation but hasn't been fully terminated yet.
If set to
true
, the cancellation request will be revokedIf set to
false
the service will throw a ValidationException.
1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 |
# File 'gems/aws-sdk-securityir/lib/aws-sdk-securityir/types.rb', line 1683 class UpdateMembershipRequest < Struct.new( :membership_id, :membership_name, :incident_response_team, :opt_in_features, :membership_accounts_configurations_update, :undo_membership_cancellation) SENSITIVE = [:membership_name] include Aws::Structure end |