Struct aws_sdk_redshift::types::RedshiftIdcApplication
source · #[non_exhaustive]pub struct RedshiftIdcApplication {
pub idc_instance_arn: Option<String>,
pub redshift_idc_application_name: Option<String>,
pub redshift_idc_application_arn: Option<String>,
pub identity_namespace: Option<String>,
pub idc_display_name: Option<String>,
pub iam_role_arn: Option<String>,
pub idc_managed_application_arn: Option<String>,
pub idc_onboard_status: Option<String>,
pub authorized_token_issuer_list: Option<Vec<AuthorizedTokenIssuer>>,
pub service_integrations: Option<Vec<ServiceIntegrationsUnion>>,
}
Expand description
Contains properties for the Redshift IDC application.
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.idc_instance_arn: Option<String>
The ARN for the IAM Identity Center instance that Redshift integrates with.
redshift_idc_application_name: Option<String>
The name of the Redshift application in IAM Identity Center.
redshift_idc_application_arn: Option<String>
The ARN for the Redshift application that integrates with IAM Identity Center.
identity_namespace: Option<String>
The identity namespace for the Amazon Redshift IAM Identity Center application. It determines which managed application verifies the connection token.
idc_display_name: Option<String>
The display name for the Amazon Redshift IAM Identity Center application. It appears on the console.
iam_role_arn: Option<String>
The ARN for the Amazon Redshift IAM Identity Center application. It has the required permissions to be assumed and invoke the IDC Identity Center API.
idc_managed_application_arn: Option<String>
The ARN for the Amazon Redshift IAM Identity Center application.
idc_onboard_status: Option<String>
The onboarding status for the Amazon Redshift IAM Identity Center application.
The authorized token issuer list for the Amazon Redshift IAM Identity Center application.
service_integrations: Option<Vec<ServiceIntegrationsUnion>>
A list of service integrations for the Redshift IAM Identity Center application.
Implementations§
source§impl RedshiftIdcApplication
impl RedshiftIdcApplication
sourcepub fn idc_instance_arn(&self) -> Option<&str>
pub fn idc_instance_arn(&self) -> Option<&str>
The ARN for the IAM Identity Center instance that Redshift integrates with.
sourcepub fn redshift_idc_application_name(&self) -> Option<&str>
pub fn redshift_idc_application_name(&self) -> Option<&str>
The name of the Redshift application in IAM Identity Center.
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 identity namespace for the Amazon Redshift IAM Identity Center application. It determines which managed application verifies the connection token.
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. It appears on the console.
sourcepub fn iam_role_arn(&self) -> Option<&str>
pub fn iam_role_arn(&self) -> Option<&str>
The ARN for the Amazon Redshift IAM Identity Center application. It has the required permissions to be assumed and invoke the IDC Identity Center API.
sourcepub fn idc_managed_application_arn(&self) -> Option<&str>
pub fn idc_managed_application_arn(&self) -> Option<&str>
The ARN for the Amazon Redshift IAM Identity Center application.
sourcepub fn idc_onboard_status(&self) -> Option<&str>
pub fn idc_onboard_status(&self) -> Option<&str>
The onboarding status for the Amazon Redshift IAM Identity Center application.
The authorized token issuer list for the Amazon Redshift IAM Identity Center 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 .authorized_token_issuer_list.is_none()
.
sourcepub fn service_integrations(&self) -> &[ServiceIntegrationsUnion]
pub fn service_integrations(&self) -> &[ServiceIntegrationsUnion]
A list of service integrations for the Redshift IAM Identity Center 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 RedshiftIdcApplication
impl RedshiftIdcApplication
sourcepub fn builder() -> RedshiftIdcApplicationBuilder
pub fn builder() -> RedshiftIdcApplicationBuilder
Creates a new builder-style object to manufacture RedshiftIdcApplication
.
Trait Implementations§
source§impl Clone for RedshiftIdcApplication
impl Clone for RedshiftIdcApplication
source§fn clone(&self) -> RedshiftIdcApplication
fn clone(&self) -> RedshiftIdcApplication
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RedshiftIdcApplication
impl Debug for RedshiftIdcApplication
source§impl PartialEq for RedshiftIdcApplication
impl PartialEq for RedshiftIdcApplication
source§fn eq(&self, other: &RedshiftIdcApplication) -> bool
fn eq(&self, other: &RedshiftIdcApplication) -> bool
self
and other
values to be equal, and is used
by ==
.