Struct aws_sdk_redshift::operation::modify_redshift_idc_application::ModifyRedshiftIdcApplicationInput
source · #[non_exhaustive]pub struct ModifyRedshiftIdcApplicationInput {
pub redshift_idc_application_arn: Option<String>,
pub identity_namespace: Option<String>,
pub iam_role_arn: Option<String>,
pub idc_display_name: Option<String>,
pub authorized_token_issuer_list: Option<Vec<AuthorizedTokenIssuer>>,
pub service_integrations: Option<Vec<ServiceIntegrationsUnion>>,
}
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.redshift_idc_application_arn: Option<String>
The ARN for the Redshift application that integrates with IAM Identity Center.
identity_namespace: Option<String>
The namespace for the Amazon Redshift IAM Identity Center application to change. It determines which managed application verifies the connection token.
iam_role_arn: Option<String>
The IAM role ARN associated with the Amazon Redshift IAM Identity Center application to change. It has the required permissions to be assumed and invoke the IDC Identity Center API.
idc_display_name: Option<String>
The display name for the Amazon Redshift IAM Identity Center application to change. It appears on the console.
The authorized token issuer list for the Amazon Redshift IAM Identity Center application to change.
service_integrations: Option<Vec<ServiceIntegrationsUnion>>
A collection of service integrations associated with the application.
Implementations§
source§impl ModifyRedshiftIdcApplicationInput
impl ModifyRedshiftIdcApplicationInput
sourcepub fn redshift_idc_application_arn(&self) -> Option<&str>
pub fn redshift_idc_application_arn(&self) -> Option<&str>
The ARN for the Redshift application that integrates with IAM Identity Center.
sourcepub fn identity_namespace(&self) -> Option<&str>
pub fn identity_namespace(&self) -> Option<&str>
The namespace for the Amazon Redshift IAM Identity Center application to change. It determines which managed application verifies the connection token.
sourcepub fn iam_role_arn(&self) -> Option<&str>
pub fn iam_role_arn(&self) -> Option<&str>
The IAM role ARN associated with the Amazon Redshift IAM Identity Center application to change. It has the required permissions to be assumed and invoke the IDC Identity Center API.
sourcepub fn idc_display_name(&self) -> Option<&str>
pub fn idc_display_name(&self) -> Option<&str>
The display name for the Amazon Redshift IAM Identity Center application to change. It appears on the console.
The authorized token issuer list for the Amazon Redshift IAM Identity Center application to change.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .authorized_token_issuer_list.is_none()
.
sourcepub fn service_integrations(&self) -> &[ServiceIntegrationsUnion]
pub fn service_integrations(&self) -> &[ServiceIntegrationsUnion]
A collection of service integrations associated with the application.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .service_integrations.is_none()
.
source§impl ModifyRedshiftIdcApplicationInput
impl ModifyRedshiftIdcApplicationInput
sourcepub fn builder() -> ModifyRedshiftIdcApplicationInputBuilder
pub fn builder() -> ModifyRedshiftIdcApplicationInputBuilder
Creates a new builder-style object to manufacture ModifyRedshiftIdcApplicationInput
.
Trait Implementations§
source§impl Clone for ModifyRedshiftIdcApplicationInput
impl Clone for ModifyRedshiftIdcApplicationInput
source§fn clone(&self) -> ModifyRedshiftIdcApplicationInput
fn clone(&self) -> ModifyRedshiftIdcApplicationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for ModifyRedshiftIdcApplicationInput
impl PartialEq for ModifyRedshiftIdcApplicationInput
source§fn eq(&self, other: &ModifyRedshiftIdcApplicationInput) -> bool
fn eq(&self, other: &ModifyRedshiftIdcApplicationInput) -> bool
self
and other
values to be equal, and is used
by ==
.