Struct aws_sdk_redshift::operation::create_redshift_idc_application::CreateRedshiftIdcApplicationInput
source · #[non_exhaustive]pub struct CreateRedshiftIdcApplicationInput {
pub idc_instance_arn: Option<String>,
pub redshift_idc_application_name: Option<String>,
pub identity_namespace: Option<String>,
pub idc_display_name: Option<String>,
pub iam_role_arn: 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.idc_instance_arn: Option<String>
The Amazon resource name (ARN) of the IAM Identity Center instance where Amazon Redshift creates a new managed application.
redshift_idc_application_name: Option<String>
The name of the Redshift application in IAM Identity Center.
identity_namespace: Option<String>
The namespace for the Amazon Redshift IAM Identity Center application instance. 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 instance. It appears in the console.
iam_role_arn: Option<String>
The IAM role ARN for the Amazon Redshift IAM Identity Center application instance. It has the required permissions to be assumed and invoke the IDC Identity Center API.
The token issuer list for the Amazon Redshift IAM Identity Center application instance.
service_integrations: Option<Vec<ServiceIntegrationsUnion>>
A collection of service integrations for the Redshift IAM Identity Center application.
Implementations§
source§impl CreateRedshiftIdcApplicationInput
impl CreateRedshiftIdcApplicationInput
sourcepub fn idc_instance_arn(&self) -> Option<&str>
pub fn idc_instance_arn(&self) -> Option<&str>
The Amazon resource name (ARN) of the IAM Identity Center instance where Amazon Redshift creates a new managed application.
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 identity_namespace(&self) -> Option<&str>
pub fn identity_namespace(&self) -> Option<&str>
The namespace for the Amazon Redshift IAM Identity Center application instance. 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 instance. It appears in the console.
sourcepub fn iam_role_arn(&self) -> Option<&str>
pub fn iam_role_arn(&self) -> Option<&str>
The IAM role ARN for the Amazon Redshift IAM Identity Center application instance. It has the required permissions to be assumed and invoke the IDC Identity Center API.
The token issuer list for the Amazon Redshift IAM Identity Center application instance.
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 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 CreateRedshiftIdcApplicationInput
impl CreateRedshiftIdcApplicationInput
sourcepub fn builder() -> CreateRedshiftIdcApplicationInputBuilder
pub fn builder() -> CreateRedshiftIdcApplicationInputBuilder
Creates a new builder-style object to manufacture CreateRedshiftIdcApplicationInput
.
Trait Implementations§
source§impl Clone for CreateRedshiftIdcApplicationInput
impl Clone for CreateRedshiftIdcApplicationInput
source§fn clone(&self) -> CreateRedshiftIdcApplicationInput
fn clone(&self) -> CreateRedshiftIdcApplicationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for CreateRedshiftIdcApplicationInput
impl PartialEq for CreateRedshiftIdcApplicationInput
source§fn eq(&self, other: &CreateRedshiftIdcApplicationInput) -> bool
fn eq(&self, other: &CreateRedshiftIdcApplicationInput) -> bool
self
and other
values to be equal, and is used
by ==
.