VaporShell.Kendra.psm1
# PSM1 Contents function Format-Json { [CmdletBinding()] Param ( [Parameter(Mandatory = $true, Position = 0, ValueFromPipeline = $true)] [String] $Json ) Begin { $cleaner = { param([String]$Line) Process{ [Regex]::Replace( $Line, "\\u(?<Value>[a-zA-Z0-9]{4})", { param($m)([char]([int]::Parse( $m.Groups['Value'].Value, [System.Globalization.NumberStyles]::HexNumber ))).ToString() } ) } } } Process { if ($PSVersionTable.PSVersion.Major -lt 6) { try { $indent = 0; $res = $Json -split '\n' | ForEach-Object { if ($_ -match '[\}\]]') { # This line contains ] or }, decrement the indentation level $indent-- } $line = (' ' * $indent * 2) + $_.TrimStart().Replace(': ', ': ') if ($_ -match '[\{\[]') { # This line contains [ or {, increment the indentation level $indent++ } $cleaner.Invoke($line) } $res -join "`n" } catch { ($Json -split '\n' | ForEach-Object {$cleaner.Invoke($_)}) -join "`n" } } else { ($Json -split '\n' | ForEach-Object {$cleaner.Invoke($_)}) -join "`n" } } } function Get-TrueCount { Param ( [parameter(Mandatory = $false,Position = 0,ValueFromPipeline = $true)] $Array ) Process { if ($array) { if ($array.Count) { $count = $array.Count } else { $count = 1 } } else { $count = 0 } } End { return $count } } function New-VSError { <# .SYNOPSIS Error generator function to use in tandem with $PSCmdlet.ThrowTerminatingError() .PARAMETER Result Allows input of an error from AWS SDK, resulting in the Exception message being parsed out. .PARAMETER String Used to create basic String message errors in the same wrapper #> [cmdletbinding(DefaultParameterSetName="Result")] param( [parameter(Position=0,ParameterSetName="Result")] $Result, [parameter(Position=0,ParameterSetName="String")] $String ) switch ($PSCmdlet.ParameterSetName) { Result { $Exception = "$($result.Exception.InnerException.Message)" } String { $Exception = "$String" } } $e = New-Object "System.Exception" $Exception $errorRecord = New-Object 'System.Management.Automation.ErrorRecord' $e, $null, ([System.Management.Automation.ErrorCategory]::InvalidOperation), $null return $errorRecord } function ResolveS3Endpoint { <# .SYNOPSIS Resolves the S3 endpoint most appropriate for each region. #> Param ( [parameter(Mandatory=$true,Position=0)] [ValidateSet("eu-west-2","ap-south-1","us-east-2","sa-east-1","us-west-1","us-west-2","eu-west-1","ap-southeast-2","ca-central-1","ap-northeast-2","us-east-1","eu-central-1","ap-southeast-1","ap-northeast-1")] [String] $Region ) $endpointMap = @{ "us-east-2" = "s3.us-east-2.amazonaws.com" "us-east-1" = "s3.amazonaws.com" "us-west-1" = "s3-us-west-1.amazonaws.com" "us-west-2" = "s3-us-west-2.amazonaws.com" "ca-central-1" = "s3.ca-central-1.amazonaws.com" "ap-south-1" = "s3.ap-south-1.amazonaws.com" "ap-northeast-2" = "s3.ap-northeast-2.amazonaws.com" "ap-southeast-1" = "s3-ap-southeast-1.amazonaws.com" "ap-southeast-2" = "s3-ap-southeast-2.amazonaws.com" "ap-northeast-1" = "s3-ap-northeast-1.amazonaws.com" "eu-central-1" = "s3.eu-central-1.amazonaws.com" "eu-west-1" = "s3-eu-west-1.amazonaws.com" "eu-west-2" = "s3.eu-west-2.amazonaws.com" "sa-east-1" = "s3-sa-east-1.amazonaws.com" } return $endpointMap[$Region] } function Add-VSKendraDataSourceAccessControlListConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.AccessControlListConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.AccessControlListConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-accesscontrollistconfiguration.html .PARAMETER KeyPath Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-accesscontrollistconfiguration.html#cfn-kendra-datasource-accesscontrollistconfiguration-keypath UpdateType: Mutable PrimitiveType: String .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceAccessControlListConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $false)] [object] $KeyPath ) Process { $obj = [KendraDataSourceAccessControlListConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceAccessControlListConfiguration' function Add-VSKendraDataSourceAclConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.AclConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.AclConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-aclconfiguration.html .PARAMETER AllowedGroupsColumnName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-aclconfiguration.html#cfn-kendra-datasource-aclconfiguration-allowedgroupscolumnname UpdateType: Mutable PrimitiveType: String .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceAclConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] [object] $AllowedGroupsColumnName ) Process { $obj = [KendraDataSourceAclConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceAclConfiguration' function Add-VSKendraDataSourceColumnConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.ColumnConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.ColumnConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-columnconfiguration.html .PARAMETER DocumentIdColumnName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-columnconfiguration.html#cfn-kendra-datasource-columnconfiguration-documentidcolumnname UpdateType: Mutable PrimitiveType: String .PARAMETER DocumentDataColumnName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-columnconfiguration.html#cfn-kendra-datasource-columnconfiguration-documentdatacolumnname UpdateType: Mutable PrimitiveType: String .PARAMETER DocumentTitleColumnName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-columnconfiguration.html#cfn-kendra-datasource-columnconfiguration-documenttitlecolumnname UpdateType: Mutable PrimitiveType: String .PARAMETER FieldMappings Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-columnconfiguration.html#cfn-kendra-datasource-columnconfiguration-fieldmappings UpdateType: Mutable Type: List ItemType: DataSourceToIndexFieldMapping .PARAMETER ChangeDetectingColumns Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-columnconfiguration.html#cfn-kendra-datasource-columnconfiguration-changedetectingcolumns UpdateType: Mutable Type: List PrimitiveItemType: String .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceColumnConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] [object] $DocumentIdColumnName, [parameter(Mandatory = $true)] [object] $DocumentDataColumnName, [parameter(Mandatory = $false)] [object] $DocumentTitleColumnName, [parameter(Mandatory = $false)] [object] $FieldMappings, [parameter(Mandatory = $true)] $ChangeDetectingColumns ) Process { $obj = [KendraDataSourceColumnConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceColumnConfiguration' function Add-VSKendraDataSourceConfluenceAttachmentConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.ConfluenceAttachmentConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.ConfluenceAttachmentConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceattachmentconfiguration.html .PARAMETER CrawlAttachments Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceattachmentconfiguration.html#cfn-kendra-datasource-confluenceattachmentconfiguration-crawlattachments UpdateType: Mutable PrimitiveType: Boolean .PARAMETER AttachmentFieldMappings Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceattachmentconfiguration.html#cfn-kendra-datasource-confluenceattachmentconfiguration-attachmentfieldmappings UpdateType: Mutable Type: List ItemType: ConfluenceAttachmentToIndexFieldMapping .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceConfluenceAttachmentConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $false)] [object] $CrawlAttachments, [parameter(Mandatory = $false)] [object] $AttachmentFieldMappings ) Process { $obj = [KendraDataSourceConfluenceAttachmentConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceConfluenceAttachmentConfiguration' function Add-VSKendraDataSourceConfluenceAttachmentToIndexFieldMapping { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.ConfluenceAttachmentToIndexFieldMapping resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.ConfluenceAttachmentToIndexFieldMapping resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceattachmenttoindexfieldmapping.html .PARAMETER DataSourceFieldName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceattachmenttoindexfieldmapping.html#cfn-kendra-datasource-confluenceattachmenttoindexfieldmapping-datasourcefieldname UpdateType: Mutable PrimitiveType: String .PARAMETER DateFieldFormat Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceattachmenttoindexfieldmapping.html#cfn-kendra-datasource-confluenceattachmenttoindexfieldmapping-datefieldformat UpdateType: Mutable PrimitiveType: String .PARAMETER IndexFieldName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceattachmenttoindexfieldmapping.html#cfn-kendra-datasource-confluenceattachmenttoindexfieldmapping-indexfieldname UpdateType: Mutable PrimitiveType: String .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceConfluenceAttachmentToIndexFieldMapping])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] [object] $DataSourceFieldName, [parameter(Mandatory = $false)] [object] $DateFieldFormat, [parameter(Mandatory = $true)] [object] $IndexFieldName ) Process { $obj = [KendraDataSourceConfluenceAttachmentToIndexFieldMapping]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceConfluenceAttachmentToIndexFieldMapping' function Add-VSKendraDataSourceConfluenceBlogConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.ConfluenceBlogConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.ConfluenceBlogConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceblogconfiguration.html .PARAMETER BlogFieldMappings Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceblogconfiguration.html#cfn-kendra-datasource-confluenceblogconfiguration-blogfieldmappings UpdateType: Mutable Type: List ItemType: ConfluenceBlogToIndexFieldMapping .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceConfluenceBlogConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $false)] [object] $BlogFieldMappings ) Process { $obj = [KendraDataSourceConfluenceBlogConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceConfluenceBlogConfiguration' function Add-VSKendraDataSourceConfluenceBlogToIndexFieldMapping { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.ConfluenceBlogToIndexFieldMapping resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.ConfluenceBlogToIndexFieldMapping resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceblogtoindexfieldmapping.html .PARAMETER DataSourceFieldName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceblogtoindexfieldmapping.html#cfn-kendra-datasource-confluenceblogtoindexfieldmapping-datasourcefieldname UpdateType: Mutable PrimitiveType: String .PARAMETER DateFieldFormat Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceblogtoindexfieldmapping.html#cfn-kendra-datasource-confluenceblogtoindexfieldmapping-datefieldformat UpdateType: Mutable PrimitiveType: String .PARAMETER IndexFieldName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceblogtoindexfieldmapping.html#cfn-kendra-datasource-confluenceblogtoindexfieldmapping-indexfieldname UpdateType: Mutable PrimitiveType: String .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceConfluenceBlogToIndexFieldMapping])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] [object] $DataSourceFieldName, [parameter(Mandatory = $false)] [object] $DateFieldFormat, [parameter(Mandatory = $true)] [object] $IndexFieldName ) Process { $obj = [KendraDataSourceConfluenceBlogToIndexFieldMapping]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceConfluenceBlogToIndexFieldMapping' function Add-VSKendraDataSourceConfluenceConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.ConfluenceConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.ConfluenceConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceconfiguration.html .PARAMETER ServerUrl Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceconfiguration.html#cfn-kendra-datasource-confluenceconfiguration-serverurl UpdateType: Mutable PrimitiveType: String .PARAMETER SecretArn Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceconfiguration.html#cfn-kendra-datasource-confluenceconfiguration-secretarn UpdateType: Mutable PrimitiveType: String .PARAMETER Version Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceconfiguration.html#cfn-kendra-datasource-confluenceconfiguration-version UpdateType: Mutable PrimitiveType: String .PARAMETER SpaceConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceconfiguration.html#cfn-kendra-datasource-confluenceconfiguration-spaceconfiguration UpdateType: Mutable Type: ConfluenceSpaceConfiguration .PARAMETER PageConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceconfiguration.html#cfn-kendra-datasource-confluenceconfiguration-pageconfiguration UpdateType: Mutable Type: ConfluencePageConfiguration .PARAMETER BlogConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceconfiguration.html#cfn-kendra-datasource-confluenceconfiguration-blogconfiguration UpdateType: Mutable Type: ConfluenceBlogConfiguration .PARAMETER AttachmentConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceconfiguration.html#cfn-kendra-datasource-confluenceconfiguration-attachmentconfiguration UpdateType: Mutable Type: ConfluenceAttachmentConfiguration .PARAMETER VpcConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceconfiguration.html#cfn-kendra-datasource-confluenceconfiguration-vpcconfiguration UpdateType: Mutable Type: DataSourceVpcConfiguration .PARAMETER InclusionPatterns Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceconfiguration.html#cfn-kendra-datasource-confluenceconfiguration-inclusionpatterns UpdateType: Mutable Type: List PrimitiveItemType: String .PARAMETER ExclusionPatterns Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluenceconfiguration.html#cfn-kendra-datasource-confluenceconfiguration-exclusionpatterns UpdateType: Mutable Type: List PrimitiveItemType: String .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceConfluenceConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] [object] $ServerUrl, [parameter(Mandatory = $true)] [object] $SecretArn, [parameter(Mandatory = $true)] [object] $Version, [parameter(Mandatory = $false)] $SpaceConfiguration, [parameter(Mandatory = $false)] $PageConfiguration, [parameter(Mandatory = $false)] $BlogConfiguration, [parameter(Mandatory = $false)] $AttachmentConfiguration, [parameter(Mandatory = $false)] $VpcConfiguration, [parameter(Mandatory = $false)] $InclusionPatterns, [parameter(Mandatory = $false)] $ExclusionPatterns ) Process { $obj = [KendraDataSourceConfluenceConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceConfluenceConfiguration' function Add-VSKendraDataSourceConfluencePageConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.ConfluencePageConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.ConfluencePageConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluencepageconfiguration.html .PARAMETER PageFieldMappings Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluencepageconfiguration.html#cfn-kendra-datasource-confluencepageconfiguration-pagefieldmappings UpdateType: Mutable Type: List ItemType: ConfluencePageToIndexFieldMapping .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceConfluencePageConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $false)] [object] $PageFieldMappings ) Process { $obj = [KendraDataSourceConfluencePageConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceConfluencePageConfiguration' function Add-VSKendraDataSourceConfluencePageToIndexFieldMapping { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.ConfluencePageToIndexFieldMapping resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.ConfluencePageToIndexFieldMapping resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluencepagetoindexfieldmapping.html .PARAMETER DataSourceFieldName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluencepagetoindexfieldmapping.html#cfn-kendra-datasource-confluencepagetoindexfieldmapping-datasourcefieldname UpdateType: Mutable PrimitiveType: String .PARAMETER DateFieldFormat Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluencepagetoindexfieldmapping.html#cfn-kendra-datasource-confluencepagetoindexfieldmapping-datefieldformat UpdateType: Mutable PrimitiveType: String .PARAMETER IndexFieldName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluencepagetoindexfieldmapping.html#cfn-kendra-datasource-confluencepagetoindexfieldmapping-indexfieldname UpdateType: Mutable PrimitiveType: String .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceConfluencePageToIndexFieldMapping])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] [object] $DataSourceFieldName, [parameter(Mandatory = $false)] [object] $DateFieldFormat, [parameter(Mandatory = $true)] [object] $IndexFieldName ) Process { $obj = [KendraDataSourceConfluencePageToIndexFieldMapping]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceConfluencePageToIndexFieldMapping' function Add-VSKendraDataSourceConfluenceSpaceConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.ConfluenceSpaceConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.ConfluenceSpaceConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluencespaceconfiguration.html .PARAMETER CrawlPersonalSpaces Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluencespaceconfiguration.html#cfn-kendra-datasource-confluencespaceconfiguration-crawlpersonalspaces UpdateType: Mutable PrimitiveType: Boolean .PARAMETER CrawlArchivedSpaces Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluencespaceconfiguration.html#cfn-kendra-datasource-confluencespaceconfiguration-crawlarchivedspaces UpdateType: Mutable PrimitiveType: Boolean .PARAMETER IncludeSpaces Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluencespaceconfiguration.html#cfn-kendra-datasource-confluencespaceconfiguration-includespaces UpdateType: Mutable Type: List PrimitiveItemType: String .PARAMETER ExcludeSpaces Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluencespaceconfiguration.html#cfn-kendra-datasource-confluencespaceconfiguration-excludespaces UpdateType: Mutable Type: List PrimitiveItemType: String .PARAMETER SpaceFieldMappings Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluencespaceconfiguration.html#cfn-kendra-datasource-confluencespaceconfiguration-spacefieldmappings UpdateType: Mutable Type: List ItemType: ConfluenceSpaceToIndexFieldMapping .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceConfluenceSpaceConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $false)] [object] $CrawlPersonalSpaces, [parameter(Mandatory = $false)] [object] $CrawlArchivedSpaces, [parameter(Mandatory = $false)] $IncludeSpaces, [parameter(Mandatory = $false)] $ExcludeSpaces, [parameter(Mandatory = $false)] [object] $SpaceFieldMappings ) Process { $obj = [KendraDataSourceConfluenceSpaceConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceConfluenceSpaceConfiguration' function Add-VSKendraDataSourceConfluenceSpaceToIndexFieldMapping { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.ConfluenceSpaceToIndexFieldMapping resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.ConfluenceSpaceToIndexFieldMapping resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluencespacetoindexfieldmapping.html .PARAMETER DataSourceFieldName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluencespacetoindexfieldmapping.html#cfn-kendra-datasource-confluencespacetoindexfieldmapping-datasourcefieldname UpdateType: Mutable PrimitiveType: String .PARAMETER DateFieldFormat Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluencespacetoindexfieldmapping.html#cfn-kendra-datasource-confluencespacetoindexfieldmapping-datefieldformat UpdateType: Mutable PrimitiveType: String .PARAMETER IndexFieldName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-confluencespacetoindexfieldmapping.html#cfn-kendra-datasource-confluencespacetoindexfieldmapping-indexfieldname UpdateType: Mutable PrimitiveType: String .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceConfluenceSpaceToIndexFieldMapping])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] [object] $DataSourceFieldName, [parameter(Mandatory = $false)] [object] $DateFieldFormat, [parameter(Mandatory = $true)] [object] $IndexFieldName ) Process { $obj = [KendraDataSourceConfluenceSpaceToIndexFieldMapping]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceConfluenceSpaceToIndexFieldMapping' function Add-VSKendraDataSourceConnectionConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.ConnectionConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.ConnectionConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-connectionconfiguration.html .PARAMETER DatabaseHost Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-connectionconfiguration.html#cfn-kendra-datasource-connectionconfiguration-databasehost UpdateType: Mutable PrimitiveType: String .PARAMETER DatabasePort Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-connectionconfiguration.html#cfn-kendra-datasource-connectionconfiguration-databaseport UpdateType: Mutable PrimitiveType: Integer .PARAMETER DatabaseName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-connectionconfiguration.html#cfn-kendra-datasource-connectionconfiguration-databasename UpdateType: Mutable PrimitiveType: String .PARAMETER TableName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-connectionconfiguration.html#cfn-kendra-datasource-connectionconfiguration-tablename UpdateType: Mutable PrimitiveType: String .PARAMETER SecretArn Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-connectionconfiguration.html#cfn-kendra-datasource-connectionconfiguration-secretarn UpdateType: Mutable PrimitiveType: String .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceConnectionConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] [object] $DatabaseHost, [parameter(Mandatory = $true)] [object] $DatabasePort, [parameter(Mandatory = $true)] [object] $DatabaseName, [parameter(Mandatory = $true)] [object] $TableName, [parameter(Mandatory = $true)] [object] $SecretArn ) Process { $obj = [KendraDataSourceConnectionConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceConnectionConfiguration' function Add-VSKendraDataSourceDatabaseConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.DatabaseConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.DatabaseConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-databaseconfiguration.html .PARAMETER DatabaseEngineType Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-databaseconfiguration.html#cfn-kendra-datasource-databaseconfiguration-databaseenginetype UpdateType: Mutable PrimitiveType: String .PARAMETER ConnectionConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-databaseconfiguration.html#cfn-kendra-datasource-databaseconfiguration-connectionconfiguration UpdateType: Mutable Type: ConnectionConfiguration .PARAMETER VpcConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-databaseconfiguration.html#cfn-kendra-datasource-databaseconfiguration-vpcconfiguration UpdateType: Mutable Type: DataSourceVpcConfiguration .PARAMETER ColumnConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-databaseconfiguration.html#cfn-kendra-datasource-databaseconfiguration-columnconfiguration UpdateType: Mutable Type: ColumnConfiguration .PARAMETER AclConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-databaseconfiguration.html#cfn-kendra-datasource-databaseconfiguration-aclconfiguration UpdateType: Mutable Type: AclConfiguration .PARAMETER SqlConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-databaseconfiguration.html#cfn-kendra-datasource-databaseconfiguration-sqlconfiguration UpdateType: Mutable Type: SqlConfiguration .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceDatabaseConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] [object] $DatabaseEngineType, [parameter(Mandatory = $true)] $ConnectionConfiguration, [parameter(Mandatory = $false)] $VpcConfiguration, [parameter(Mandatory = $true)] $ColumnConfiguration, [parameter(Mandatory = $false)] $AclConfiguration, [parameter(Mandatory = $false)] $SqlConfiguration ) Process { $obj = [KendraDataSourceDatabaseConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceDatabaseConfiguration' function Add-VSKendraDataSourceDataSourceConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.DataSourceConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.DataSourceConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-datasourceconfiguration.html .PARAMETER S3Configuration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-datasourceconfiguration.html#cfn-kendra-datasource-datasourceconfiguration-s3configuration UpdateType: Mutable Type: S3DataSourceConfiguration .PARAMETER SharePointConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-datasourceconfiguration.html#cfn-kendra-datasource-datasourceconfiguration-sharepointconfiguration UpdateType: Mutable Type: SharePointConfiguration .PARAMETER SalesforceConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-datasourceconfiguration.html#cfn-kendra-datasource-datasourceconfiguration-salesforceconfiguration UpdateType: Mutable Type: SalesforceConfiguration .PARAMETER OneDriveConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-datasourceconfiguration.html#cfn-kendra-datasource-datasourceconfiguration-onedriveconfiguration UpdateType: Mutable Type: OneDriveConfiguration .PARAMETER ServiceNowConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-datasourceconfiguration.html#cfn-kendra-datasource-datasourceconfiguration-servicenowconfiguration UpdateType: Mutable Type: ServiceNowConfiguration .PARAMETER DatabaseConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-datasourceconfiguration.html#cfn-kendra-datasource-datasourceconfiguration-databaseconfiguration UpdateType: Mutable Type: DatabaseConfiguration .PARAMETER ConfluenceConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-datasourceconfiguration.html#cfn-kendra-datasource-datasourceconfiguration-confluenceconfiguration UpdateType: Mutable Type: ConfluenceConfiguration .PARAMETER GoogleDriveConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-datasourceconfiguration.html#cfn-kendra-datasource-datasourceconfiguration-googledriveconfiguration UpdateType: Mutable Type: GoogleDriveConfiguration .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceDataSourceConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $false)] $S3Configuration, [parameter(Mandatory = $false)] $SharePointConfiguration, [parameter(Mandatory = $false)] $SalesforceConfiguration, [parameter(Mandatory = $false)] $OneDriveConfiguration, [parameter(Mandatory = $false)] $ServiceNowConfiguration, [parameter(Mandatory = $false)] $DatabaseConfiguration, [parameter(Mandatory = $false)] $ConfluenceConfiguration, [parameter(Mandatory = $false)] $GoogleDriveConfiguration ) Process { $obj = [KendraDataSourceDataSourceConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceDataSourceConfiguration' function Add-VSKendraDataSourceDataSourceToIndexFieldMapping { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.DataSourceToIndexFieldMapping resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.DataSourceToIndexFieldMapping resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-datasourcetoindexfieldmapping.html .PARAMETER DataSourceFieldName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-datasourcetoindexfieldmapping.html#cfn-kendra-datasource-datasourcetoindexfieldmapping-datasourcefieldname UpdateType: Mutable PrimitiveType: String .PARAMETER DateFieldFormat Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-datasourcetoindexfieldmapping.html#cfn-kendra-datasource-datasourcetoindexfieldmapping-datefieldformat UpdateType: Mutable PrimitiveType: String .PARAMETER IndexFieldName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-datasourcetoindexfieldmapping.html#cfn-kendra-datasource-datasourcetoindexfieldmapping-indexfieldname UpdateType: Mutable PrimitiveType: String .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceDataSourceToIndexFieldMapping])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] [object] $DataSourceFieldName, [parameter(Mandatory = $false)] [object] $DateFieldFormat, [parameter(Mandatory = $true)] [object] $IndexFieldName ) Process { $obj = [KendraDataSourceDataSourceToIndexFieldMapping]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceDataSourceToIndexFieldMapping' function Add-VSKendraDataSourceDataSourceVpcConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.DataSourceVpcConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.DataSourceVpcConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-datasourcevpcconfiguration.html .PARAMETER SubnetIds Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-datasourcevpcconfiguration.html#cfn-kendra-datasource-datasourcevpcconfiguration-subnetids UpdateType: Mutable Type: List PrimitiveItemType: String .PARAMETER SecurityGroupIds Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-datasourcevpcconfiguration.html#cfn-kendra-datasource-datasourcevpcconfiguration-securitygroupids UpdateType: Mutable Type: List PrimitiveItemType: String .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceDataSourceVpcConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] $SubnetIds, [parameter(Mandatory = $true)] $SecurityGroupIds ) Process { $obj = [KendraDataSourceDataSourceVpcConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceDataSourceVpcConfiguration' function Add-VSKendraDataSourceDocumentsMetadataConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.DocumentsMetadataConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.DocumentsMetadataConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-documentsmetadataconfiguration.html .PARAMETER S3Prefix Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-documentsmetadataconfiguration.html#cfn-kendra-datasource-documentsmetadataconfiguration-s3prefix UpdateType: Mutable PrimitiveType: String .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceDocumentsMetadataConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $false)] [object] $S3Prefix ) Process { $obj = [KendraDataSourceDocumentsMetadataConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceDocumentsMetadataConfiguration' function Add-VSKendraDataSourceGoogleDriveConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.GoogleDriveConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.GoogleDriveConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-googledriveconfiguration.html .PARAMETER SecretArn Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-googledriveconfiguration.html#cfn-kendra-datasource-googledriveconfiguration-secretarn UpdateType: Mutable PrimitiveType: String .PARAMETER InclusionPatterns Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-googledriveconfiguration.html#cfn-kendra-datasource-googledriveconfiguration-inclusionpatterns UpdateType: Mutable Type: List PrimitiveItemType: String .PARAMETER ExclusionPatterns Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-googledriveconfiguration.html#cfn-kendra-datasource-googledriveconfiguration-exclusionpatterns UpdateType: Mutable Type: List PrimitiveItemType: String .PARAMETER FieldMappings Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-googledriveconfiguration.html#cfn-kendra-datasource-googledriveconfiguration-fieldmappings UpdateType: Mutable Type: List ItemType: DataSourceToIndexFieldMapping .PARAMETER ExcludeMimeTypes Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-googledriveconfiguration.html#cfn-kendra-datasource-googledriveconfiguration-excludemimetypes UpdateType: Mutable Type: List PrimitiveItemType: String .PARAMETER ExcludeUserAccounts Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-googledriveconfiguration.html#cfn-kendra-datasource-googledriveconfiguration-excludeuseraccounts UpdateType: Mutable Type: List PrimitiveItemType: String .PARAMETER ExcludeSharedDrives Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-googledriveconfiguration.html#cfn-kendra-datasource-googledriveconfiguration-excludeshareddrives UpdateType: Mutable Type: List PrimitiveItemType: String .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceGoogleDriveConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] [object] $SecretArn, [parameter(Mandatory = $false)] $InclusionPatterns, [parameter(Mandatory = $false)] $ExclusionPatterns, [parameter(Mandatory = $false)] [object] $FieldMappings, [parameter(Mandatory = $false)] $ExcludeMimeTypes, [parameter(Mandatory = $false)] $ExcludeUserAccounts, [parameter(Mandatory = $false)] $ExcludeSharedDrives ) Process { $obj = [KendraDataSourceGoogleDriveConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceGoogleDriveConfiguration' function Add-VSKendraDataSourceOneDriveConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.OneDriveConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.OneDriveConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-onedriveconfiguration.html .PARAMETER TenantDomain Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-onedriveconfiguration.html#cfn-kendra-datasource-onedriveconfiguration-tenantdomain UpdateType: Mutable PrimitiveType: String .PARAMETER SecretArn Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-onedriveconfiguration.html#cfn-kendra-datasource-onedriveconfiguration-secretarn UpdateType: Mutable PrimitiveType: String .PARAMETER OneDriveUsers Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-onedriveconfiguration.html#cfn-kendra-datasource-onedriveconfiguration-onedriveusers UpdateType: Mutable Type: OneDriveUsers .PARAMETER InclusionPatterns Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-onedriveconfiguration.html#cfn-kendra-datasource-onedriveconfiguration-inclusionpatterns UpdateType: Mutable Type: List PrimitiveItemType: String .PARAMETER ExclusionPatterns Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-onedriveconfiguration.html#cfn-kendra-datasource-onedriveconfiguration-exclusionpatterns UpdateType: Mutable Type: List PrimitiveItemType: String .PARAMETER FieldMappings Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-onedriveconfiguration.html#cfn-kendra-datasource-onedriveconfiguration-fieldmappings UpdateType: Mutable Type: List ItemType: DataSourceToIndexFieldMapping .PARAMETER DisableLocalGroups Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-onedriveconfiguration.html#cfn-kendra-datasource-onedriveconfiguration-disablelocalgroups UpdateType: Mutable PrimitiveType: Boolean .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceOneDriveConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] [object] $TenantDomain, [parameter(Mandatory = $true)] [object] $SecretArn, [parameter(Mandatory = $true)] $OneDriveUsers, [parameter(Mandatory = $false)] $InclusionPatterns, [parameter(Mandatory = $false)] $ExclusionPatterns, [parameter(Mandatory = $false)] [object] $FieldMappings, [parameter(Mandatory = $false)] [object] $DisableLocalGroups ) Process { $obj = [KendraDataSourceOneDriveConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceOneDriveConfiguration' function Add-VSKendraDataSourceOneDriveUsers { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.OneDriveUsers resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.OneDriveUsers resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-onedriveusers.html .PARAMETER OneDriveUserList Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-onedriveusers.html#cfn-kendra-datasource-onedriveusers-onedriveuserlist UpdateType: Mutable Type: List PrimitiveItemType: String .PARAMETER OneDriveUserS3Path Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-onedriveusers.html#cfn-kendra-datasource-onedriveusers-onedriveusers3path UpdateType: Mutable Type: S3Path .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceOneDriveUsers])] [cmdletbinding()] Param( [parameter(Mandatory = $false)] $OneDriveUserList, [parameter(Mandatory = $false)] $OneDriveUserS3Path ) Process { $obj = [KendraDataSourceOneDriveUsers]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceOneDriveUsers' function Add-VSKendraDataSourceS3DataSourceConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.S3DataSourceConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.S3DataSourceConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-s3datasourceconfiguration.html .PARAMETER BucketName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-s3datasourceconfiguration.html#cfn-kendra-datasource-s3datasourceconfiguration-bucketname UpdateType: Mutable PrimitiveType: String .PARAMETER InclusionPrefixes Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-s3datasourceconfiguration.html#cfn-kendra-datasource-s3datasourceconfiguration-inclusionprefixes UpdateType: Mutable Type: List PrimitiveItemType: String .PARAMETER InclusionPatterns Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-s3datasourceconfiguration.html#cfn-kendra-datasource-s3datasourceconfiguration-inclusionpatterns UpdateType: Mutable Type: List PrimitiveItemType: String .PARAMETER ExclusionPatterns Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-s3datasourceconfiguration.html#cfn-kendra-datasource-s3datasourceconfiguration-exclusionpatterns UpdateType: Mutable Type: List PrimitiveItemType: String .PARAMETER DocumentsMetadataConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-s3datasourceconfiguration.html#cfn-kendra-datasource-s3datasourceconfiguration-documentsmetadataconfiguration UpdateType: Mutable Type: DocumentsMetadataConfiguration .PARAMETER AccessControlListConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-s3datasourceconfiguration.html#cfn-kendra-datasource-s3datasourceconfiguration-accesscontrollistconfiguration UpdateType: Mutable Type: AccessControlListConfiguration .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceS3DataSourceConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] [object] $BucketName, [parameter(Mandatory = $false)] $InclusionPrefixes, [parameter(Mandatory = $false)] $InclusionPatterns, [parameter(Mandatory = $false)] $ExclusionPatterns, [parameter(Mandatory = $false)] $DocumentsMetadataConfiguration, [parameter(Mandatory = $false)] $AccessControlListConfiguration ) Process { $obj = [KendraDataSourceS3DataSourceConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceS3DataSourceConfiguration' function Add-VSKendraDataSourceS3Path { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.S3Path resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.S3Path resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-s3path.html .PARAMETER Bucket Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-s3path.html#cfn-kendra-datasource-s3path-bucket UpdateType: Mutable PrimitiveType: String .PARAMETER Key Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-s3path.html#cfn-kendra-datasource-s3path-key UpdateType: Mutable PrimitiveType: String .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceS3Path])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] [object] $Bucket, [parameter(Mandatory = $true)] [object] $Key ) Process { $obj = [KendraDataSourceS3Path]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceS3Path' function Add-VSKendraDataSourceSalesforceChatterFeedConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.SalesforceChatterFeedConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.SalesforceChatterFeedConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforcechatterfeedconfiguration.html .PARAMETER DocumentDataFieldName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforcechatterfeedconfiguration.html#cfn-kendra-datasource-salesforcechatterfeedconfiguration-documentdatafieldname UpdateType: Mutable PrimitiveType: String .PARAMETER DocumentTitleFieldName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforcechatterfeedconfiguration.html#cfn-kendra-datasource-salesforcechatterfeedconfiguration-documenttitlefieldname UpdateType: Mutable PrimitiveType: String .PARAMETER FieldMappings Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforcechatterfeedconfiguration.html#cfn-kendra-datasource-salesforcechatterfeedconfiguration-fieldmappings UpdateType: Mutable Type: List ItemType: DataSourceToIndexFieldMapping .PARAMETER IncludeFilterTypes Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforcechatterfeedconfiguration.html#cfn-kendra-datasource-salesforcechatterfeedconfiguration-includefiltertypes UpdateType: Mutable Type: List PrimitiveItemType: String .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceSalesforceChatterFeedConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] [object] $DocumentDataFieldName, [parameter(Mandatory = $false)] [object] $DocumentTitleFieldName, [parameter(Mandatory = $false)] [object] $FieldMappings, [parameter(Mandatory = $false)] $IncludeFilterTypes ) Process { $obj = [KendraDataSourceSalesforceChatterFeedConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceSalesforceChatterFeedConfiguration' function Add-VSKendraDataSourceSalesforceConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.SalesforceConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.SalesforceConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforceconfiguration.html .PARAMETER ServerUrl Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforceconfiguration.html#cfn-kendra-datasource-salesforceconfiguration-serverurl UpdateType: Mutable PrimitiveType: String .PARAMETER SecretArn Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforceconfiguration.html#cfn-kendra-datasource-salesforceconfiguration-secretarn UpdateType: Mutable PrimitiveType: String .PARAMETER StandardObjectConfigurations Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforceconfiguration.html#cfn-kendra-datasource-salesforceconfiguration-standardobjectconfigurations UpdateType: Mutable Type: List ItemType: SalesforceStandardObjectConfiguration .PARAMETER KnowledgeArticleConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforceconfiguration.html#cfn-kendra-datasource-salesforceconfiguration-knowledgearticleconfiguration UpdateType: Mutable Type: SalesforceKnowledgeArticleConfiguration .PARAMETER ChatterFeedConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforceconfiguration.html#cfn-kendra-datasource-salesforceconfiguration-chatterfeedconfiguration UpdateType: Mutable Type: SalesforceChatterFeedConfiguration .PARAMETER CrawlAttachments Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforceconfiguration.html#cfn-kendra-datasource-salesforceconfiguration-crawlattachments UpdateType: Mutable PrimitiveType: Boolean .PARAMETER StandardObjectAttachmentConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforceconfiguration.html#cfn-kendra-datasource-salesforceconfiguration-standardobjectattachmentconfiguration UpdateType: Mutable Type: SalesforceStandardObjectAttachmentConfiguration .PARAMETER IncludeAttachmentFilePatterns Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforceconfiguration.html#cfn-kendra-datasource-salesforceconfiguration-includeattachmentfilepatterns UpdateType: Mutable Type: List PrimitiveItemType: String .PARAMETER ExcludeAttachmentFilePatterns Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforceconfiguration.html#cfn-kendra-datasource-salesforceconfiguration-excludeattachmentfilepatterns UpdateType: Mutable Type: List PrimitiveItemType: String .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceSalesforceConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] [object] $ServerUrl, [parameter(Mandatory = $true)] [object] $SecretArn, [parameter(Mandatory = $false)] [object] $StandardObjectConfigurations, [parameter(Mandatory = $false)] $KnowledgeArticleConfiguration, [parameter(Mandatory = $false)] $ChatterFeedConfiguration, [parameter(Mandatory = $false)] [object] $CrawlAttachments, [parameter(Mandatory = $false)] $StandardObjectAttachmentConfiguration, [parameter(Mandatory = $false)] $IncludeAttachmentFilePatterns, [parameter(Mandatory = $false)] $ExcludeAttachmentFilePatterns ) Process { $obj = [KendraDataSourceSalesforceConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceSalesforceConfiguration' function Add-VSKendraDataSourceSalesforceCustomKnowledgeArticleTypeConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.SalesforceCustomKnowledgeArticleTypeConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.SalesforceCustomKnowledgeArticleTypeConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforcecustomknowledgearticletypeconfiguration.html .PARAMETER Name Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforcecustomknowledgearticletypeconfiguration.html#cfn-kendra-datasource-salesforcecustomknowledgearticletypeconfiguration-name UpdateType: Mutable PrimitiveType: String .PARAMETER DocumentDataFieldName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforcecustomknowledgearticletypeconfiguration.html#cfn-kendra-datasource-salesforcecustomknowledgearticletypeconfiguration-documentdatafieldname UpdateType: Mutable PrimitiveType: String .PARAMETER DocumentTitleFieldName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforcecustomknowledgearticletypeconfiguration.html#cfn-kendra-datasource-salesforcecustomknowledgearticletypeconfiguration-documenttitlefieldname UpdateType: Mutable PrimitiveType: String .PARAMETER FieldMappings Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforcecustomknowledgearticletypeconfiguration.html#cfn-kendra-datasource-salesforcecustomknowledgearticletypeconfiguration-fieldmappings UpdateType: Mutable Type: List ItemType: DataSourceToIndexFieldMapping .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceSalesforceCustomKnowledgeArticleTypeConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] [object] $Name, [parameter(Mandatory = $true)] [object] $DocumentDataFieldName, [parameter(Mandatory = $false)] [object] $DocumentTitleFieldName, [parameter(Mandatory = $false)] [object] $FieldMappings ) Process { $obj = [KendraDataSourceSalesforceCustomKnowledgeArticleTypeConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceSalesforceCustomKnowledgeArticleTypeConfiguration' function Add-VSKendraDataSourceSalesforceKnowledgeArticleConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.SalesforceKnowledgeArticleConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.SalesforceKnowledgeArticleConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforceknowledgearticleconfiguration.html .PARAMETER IncludedStates Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforceknowledgearticleconfiguration.html#cfn-kendra-datasource-salesforceknowledgearticleconfiguration-includedstates UpdateType: Mutable Type: List PrimitiveItemType: String .PARAMETER StandardKnowledgeArticleTypeConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforceknowledgearticleconfiguration.html#cfn-kendra-datasource-salesforceknowledgearticleconfiguration-standardknowledgearticletypeconfiguration UpdateType: Mutable Type: SalesforceStandardKnowledgeArticleTypeConfiguration .PARAMETER CustomKnowledgeArticleTypeConfigurations Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforceknowledgearticleconfiguration.html#cfn-kendra-datasource-salesforceknowledgearticleconfiguration-customknowledgearticletypeconfigurations UpdateType: Mutable Type: List ItemType: SalesforceCustomKnowledgeArticleTypeConfiguration .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceSalesforceKnowledgeArticleConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] $IncludedStates, [parameter(Mandatory = $false)] $StandardKnowledgeArticleTypeConfiguration, [parameter(Mandatory = $false)] [object] $CustomKnowledgeArticleTypeConfigurations ) Process { $obj = [KendraDataSourceSalesforceKnowledgeArticleConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceSalesforceKnowledgeArticleConfiguration' function Add-VSKendraDataSourceSalesforceStandardKnowledgeArticleTypeConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.SalesforceStandardKnowledgeArticleTypeConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.SalesforceStandardKnowledgeArticleTypeConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforcestandardknowledgearticletypeconfiguration.html .PARAMETER DocumentDataFieldName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforcestandardknowledgearticletypeconfiguration.html#cfn-kendra-datasource-salesforcestandardknowledgearticletypeconfiguration-documentdatafieldname UpdateType: Mutable PrimitiveType: String .PARAMETER DocumentTitleFieldName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforcestandardknowledgearticletypeconfiguration.html#cfn-kendra-datasource-salesforcestandardknowledgearticletypeconfiguration-documenttitlefieldname UpdateType: Mutable PrimitiveType: String .PARAMETER FieldMappings Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforcestandardknowledgearticletypeconfiguration.html#cfn-kendra-datasource-salesforcestandardknowledgearticletypeconfiguration-fieldmappings UpdateType: Mutable Type: List ItemType: DataSourceToIndexFieldMapping .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceSalesforceStandardKnowledgeArticleTypeConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] [object] $DocumentDataFieldName, [parameter(Mandatory = $false)] [object] $DocumentTitleFieldName, [parameter(Mandatory = $false)] [object] $FieldMappings ) Process { $obj = [KendraDataSourceSalesforceStandardKnowledgeArticleTypeConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceSalesforceStandardKnowledgeArticleTypeConfiguration' function Add-VSKendraDataSourceSalesforceStandardObjectAttachmentConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.SalesforceStandardObjectAttachmentConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.SalesforceStandardObjectAttachmentConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforcestandardobjectattachmentconfiguration.html .PARAMETER DocumentTitleFieldName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforcestandardobjectattachmentconfiguration.html#cfn-kendra-datasource-salesforcestandardobjectattachmentconfiguration-documenttitlefieldname UpdateType: Mutable PrimitiveType: String .PARAMETER FieldMappings Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforcestandardobjectattachmentconfiguration.html#cfn-kendra-datasource-salesforcestandardobjectattachmentconfiguration-fieldmappings UpdateType: Mutable Type: List ItemType: DataSourceToIndexFieldMapping .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceSalesforceStandardObjectAttachmentConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $false)] [object] $DocumentTitleFieldName, [parameter(Mandatory = $false)] [object] $FieldMappings ) Process { $obj = [KendraDataSourceSalesforceStandardObjectAttachmentConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceSalesforceStandardObjectAttachmentConfiguration' function Add-VSKendraDataSourceSalesforceStandardObjectConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.SalesforceStandardObjectConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.SalesforceStandardObjectConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforcestandardobjectconfiguration.html .PARAMETER Name Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforcestandardobjectconfiguration.html#cfn-kendra-datasource-salesforcestandardobjectconfiguration-name UpdateType: Mutable PrimitiveType: String .PARAMETER DocumentDataFieldName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforcestandardobjectconfiguration.html#cfn-kendra-datasource-salesforcestandardobjectconfiguration-documentdatafieldname UpdateType: Mutable PrimitiveType: String .PARAMETER DocumentTitleFieldName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforcestandardobjectconfiguration.html#cfn-kendra-datasource-salesforcestandardobjectconfiguration-documenttitlefieldname UpdateType: Mutable PrimitiveType: String .PARAMETER FieldMappings Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-salesforcestandardobjectconfiguration.html#cfn-kendra-datasource-salesforcestandardobjectconfiguration-fieldmappings UpdateType: Mutable Type: List ItemType: DataSourceToIndexFieldMapping .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceSalesforceStandardObjectConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] [object] $Name, [parameter(Mandatory = $true)] [object] $DocumentDataFieldName, [parameter(Mandatory = $false)] [object] $DocumentTitleFieldName, [parameter(Mandatory = $false)] [object] $FieldMappings ) Process { $obj = [KendraDataSourceSalesforceStandardObjectConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceSalesforceStandardObjectConfiguration' function Add-VSKendraDataSourceServiceNowConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.ServiceNowConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.ServiceNowConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-servicenowconfiguration.html .PARAMETER HostUrl Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-servicenowconfiguration.html#cfn-kendra-datasource-servicenowconfiguration-hosturl UpdateType: Mutable PrimitiveType: String .PARAMETER SecretArn Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-servicenowconfiguration.html#cfn-kendra-datasource-servicenowconfiguration-secretarn UpdateType: Mutable PrimitiveType: String .PARAMETER ServiceNowBuildVersion Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-servicenowconfiguration.html#cfn-kendra-datasource-servicenowconfiguration-servicenowbuildversion UpdateType: Mutable PrimitiveType: String .PARAMETER KnowledgeArticleConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-servicenowconfiguration.html#cfn-kendra-datasource-servicenowconfiguration-knowledgearticleconfiguration UpdateType: Mutable Type: ServiceNowKnowledgeArticleConfiguration .PARAMETER ServiceCatalogConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-servicenowconfiguration.html#cfn-kendra-datasource-servicenowconfiguration-servicecatalogconfiguration UpdateType: Mutable Type: ServiceNowServiceCatalogConfiguration .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceServiceNowConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] [object] $HostUrl, [parameter(Mandatory = $true)] [object] $SecretArn, [parameter(Mandatory = $true)] [object] $ServiceNowBuildVersion, [parameter(Mandatory = $false)] $KnowledgeArticleConfiguration, [parameter(Mandatory = $false)] $ServiceCatalogConfiguration ) Process { $obj = [KendraDataSourceServiceNowConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceServiceNowConfiguration' function Add-VSKendraDataSourceServiceNowKnowledgeArticleConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.ServiceNowKnowledgeArticleConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.ServiceNowKnowledgeArticleConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-servicenowknowledgearticleconfiguration.html .PARAMETER CrawlAttachments Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-servicenowknowledgearticleconfiguration.html#cfn-kendra-datasource-servicenowknowledgearticleconfiguration-crawlattachments UpdateType: Mutable PrimitiveType: Boolean .PARAMETER IncludeAttachmentFilePatterns Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-servicenowknowledgearticleconfiguration.html#cfn-kendra-datasource-servicenowknowledgearticleconfiguration-includeattachmentfilepatterns UpdateType: Mutable Type: List PrimitiveItemType: String .PARAMETER ExcludeAttachmentFilePatterns Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-servicenowknowledgearticleconfiguration.html#cfn-kendra-datasource-servicenowknowledgearticleconfiguration-excludeattachmentfilepatterns UpdateType: Mutable Type: List PrimitiveItemType: String .PARAMETER DocumentDataFieldName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-servicenowknowledgearticleconfiguration.html#cfn-kendra-datasource-servicenowknowledgearticleconfiguration-documentdatafieldname UpdateType: Mutable PrimitiveType: String .PARAMETER DocumentTitleFieldName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-servicenowknowledgearticleconfiguration.html#cfn-kendra-datasource-servicenowknowledgearticleconfiguration-documenttitlefieldname UpdateType: Mutable PrimitiveType: String .PARAMETER FieldMappings Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-servicenowknowledgearticleconfiguration.html#cfn-kendra-datasource-servicenowknowledgearticleconfiguration-fieldmappings UpdateType: Mutable Type: List ItemType: DataSourceToIndexFieldMapping .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceServiceNowKnowledgeArticleConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $false)] [object] $CrawlAttachments, [parameter(Mandatory = $false)] $IncludeAttachmentFilePatterns, [parameter(Mandatory = $false)] $ExcludeAttachmentFilePatterns, [parameter(Mandatory = $true)] [object] $DocumentDataFieldName, [parameter(Mandatory = $false)] [object] $DocumentTitleFieldName, [parameter(Mandatory = $false)] [object] $FieldMappings ) Process { $obj = [KendraDataSourceServiceNowKnowledgeArticleConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceServiceNowKnowledgeArticleConfiguration' function Add-VSKendraDataSourceServiceNowServiceCatalogConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.ServiceNowServiceCatalogConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.ServiceNowServiceCatalogConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-servicenowservicecatalogconfiguration.html .PARAMETER CrawlAttachments Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-servicenowservicecatalogconfiguration.html#cfn-kendra-datasource-servicenowservicecatalogconfiguration-crawlattachments UpdateType: Mutable PrimitiveType: Boolean .PARAMETER IncludeAttachmentFilePatterns Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-servicenowservicecatalogconfiguration.html#cfn-kendra-datasource-servicenowservicecatalogconfiguration-includeattachmentfilepatterns UpdateType: Mutable Type: List PrimitiveItemType: String .PARAMETER ExcludeAttachmentFilePatterns Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-servicenowservicecatalogconfiguration.html#cfn-kendra-datasource-servicenowservicecatalogconfiguration-excludeattachmentfilepatterns UpdateType: Mutable Type: List PrimitiveItemType: String .PARAMETER DocumentDataFieldName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-servicenowservicecatalogconfiguration.html#cfn-kendra-datasource-servicenowservicecatalogconfiguration-documentdatafieldname UpdateType: Mutable PrimitiveType: String .PARAMETER DocumentTitleFieldName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-servicenowservicecatalogconfiguration.html#cfn-kendra-datasource-servicenowservicecatalogconfiguration-documenttitlefieldname UpdateType: Mutable PrimitiveType: String .PARAMETER FieldMappings Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-servicenowservicecatalogconfiguration.html#cfn-kendra-datasource-servicenowservicecatalogconfiguration-fieldmappings UpdateType: Mutable Type: List ItemType: DataSourceToIndexFieldMapping .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceServiceNowServiceCatalogConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $false)] [object] $CrawlAttachments, [parameter(Mandatory = $false)] $IncludeAttachmentFilePatterns, [parameter(Mandatory = $false)] $ExcludeAttachmentFilePatterns, [parameter(Mandatory = $true)] [object] $DocumentDataFieldName, [parameter(Mandatory = $false)] [object] $DocumentTitleFieldName, [parameter(Mandatory = $false)] [object] $FieldMappings ) Process { $obj = [KendraDataSourceServiceNowServiceCatalogConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceServiceNowServiceCatalogConfiguration' function Add-VSKendraDataSourceSharePointConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.SharePointConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.SharePointConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-sharepointconfiguration.html .PARAMETER SharePointVersion Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-sharepointconfiguration.html#cfn-kendra-datasource-sharepointconfiguration-sharepointversion UpdateType: Mutable PrimitiveType: String .PARAMETER Urls Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-sharepointconfiguration.html#cfn-kendra-datasource-sharepointconfiguration-urls UpdateType: Mutable Type: List PrimitiveItemType: String .PARAMETER SecretArn Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-sharepointconfiguration.html#cfn-kendra-datasource-sharepointconfiguration-secretarn UpdateType: Mutable PrimitiveType: String .PARAMETER CrawlAttachments Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-sharepointconfiguration.html#cfn-kendra-datasource-sharepointconfiguration-crawlattachments UpdateType: Mutable PrimitiveType: Boolean .PARAMETER UseChangeLog Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-sharepointconfiguration.html#cfn-kendra-datasource-sharepointconfiguration-usechangelog UpdateType: Mutable PrimitiveType: Boolean .PARAMETER InclusionPatterns Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-sharepointconfiguration.html#cfn-kendra-datasource-sharepointconfiguration-inclusionpatterns UpdateType: Mutable Type: List PrimitiveItemType: String .PARAMETER ExclusionPatterns Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-sharepointconfiguration.html#cfn-kendra-datasource-sharepointconfiguration-exclusionpatterns UpdateType: Mutable Type: List PrimitiveItemType: String .PARAMETER VpcConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-sharepointconfiguration.html#cfn-kendra-datasource-sharepointconfiguration-vpcconfiguration UpdateType: Mutable Type: DataSourceVpcConfiguration .PARAMETER FieldMappings Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-sharepointconfiguration.html#cfn-kendra-datasource-sharepointconfiguration-fieldmappings UpdateType: Mutable Type: List ItemType: DataSourceToIndexFieldMapping .PARAMETER DocumentTitleFieldName Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-sharepointconfiguration.html#cfn-kendra-datasource-sharepointconfiguration-documenttitlefieldname UpdateType: Mutable PrimitiveType: String .PARAMETER DisableLocalGroups Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-sharepointconfiguration.html#cfn-kendra-datasource-sharepointconfiguration-disablelocalgroups UpdateType: Mutable PrimitiveType: Boolean .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceSharePointConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] [object] $SharePointVersion, [parameter(Mandatory = $true)] $Urls, [parameter(Mandatory = $true)] [object] $SecretArn, [parameter(Mandatory = $false)] [object] $CrawlAttachments, [parameter(Mandatory = $false)] [object] $UseChangeLog, [parameter(Mandatory = $false)] $InclusionPatterns, [parameter(Mandatory = $false)] $ExclusionPatterns, [parameter(Mandatory = $false)] $VpcConfiguration, [parameter(Mandatory = $false)] [object] $FieldMappings, [parameter(Mandatory = $false)] [object] $DocumentTitleFieldName, [parameter(Mandatory = $false)] [object] $DisableLocalGroups ) Process { $obj = [KendraDataSourceSharePointConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceSharePointConfiguration' function Add-VSKendraDataSourceSqlConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::DataSource.SqlConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource.SqlConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-sqlconfiguration.html .PARAMETER QueryIdentifiersEnclosingOption Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-datasource-sqlconfiguration.html#cfn-kendra-datasource-sqlconfiguration-queryidentifiersenclosingoption UpdateType: Mutable PrimitiveType: String .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSourceSqlConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $false)] [object] $QueryIdentifiersEnclosingOption ) Process { $obj = [KendraDataSourceSqlConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraDataSourceSqlConfiguration' function Add-VSKendraFaqS3Path { <# .SYNOPSIS Adds an AWS::Kendra::Faq.S3Path resource property to the template. .DESCRIPTION Adds an AWS::Kendra::Faq.S3Path resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-faq-s3path.html .PARAMETER Bucket Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-faq-s3path.html#cfn-kendra-faq-s3path-bucket UpdateType: Immutable PrimitiveType: String .PARAMETER Key Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-faq-s3path.html#cfn-kendra-faq-s3path-key UpdateType: Immutable PrimitiveType: String .FUNCTIONALITY Vaporshell #> [OutputType([KendraFaqS3Path])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] [object] $Bucket, [parameter(Mandatory = $true)] [object] $Key ) Process { $obj = [KendraFaqS3Path]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraFaqS3Path' function Add-VSKendraIndexCapacityUnitsConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::Index.CapacityUnitsConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::Index.CapacityUnitsConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-capacityunitsconfiguration.html .PARAMETER StorageCapacityUnits Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-capacityunitsconfiguration.html#cfn-kendra-index-capacityunitsconfiguration-storagecapacityunits UpdateType: Mutable PrimitiveType: Integer .PARAMETER QueryCapacityUnits Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-capacityunitsconfiguration.html#cfn-kendra-index-capacityunitsconfiguration-querycapacityunits UpdateType: Mutable PrimitiveType: Integer .FUNCTIONALITY Vaporshell #> [OutputType([KendraIndexCapacityUnitsConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] [object] $StorageCapacityUnits, [parameter(Mandatory = $true)] [object] $QueryCapacityUnits ) Process { $obj = [KendraIndexCapacityUnitsConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraIndexCapacityUnitsConfiguration' function Add-VSKendraIndexDocumentMetadataConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::Index.DocumentMetadataConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::Index.DocumentMetadataConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-documentmetadataconfiguration.html .PARAMETER Name Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-documentmetadataconfiguration.html#cfn-kendra-index-documentmetadataconfiguration-name UpdateType: Mutable PrimitiveType: String .PARAMETER Type Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-documentmetadataconfiguration.html#cfn-kendra-index-documentmetadataconfiguration-type UpdateType: Mutable PrimitiveType: String .PARAMETER Relevance Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-documentmetadataconfiguration.html#cfn-kendra-index-documentmetadataconfiguration-relevance UpdateType: Mutable Type: Relevance .PARAMETER Search Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-documentmetadataconfiguration.html#cfn-kendra-index-documentmetadataconfiguration-search UpdateType: Mutable Type: Search .FUNCTIONALITY Vaporshell #> [OutputType([KendraIndexDocumentMetadataConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] [object] $Name, [parameter(Mandatory = $true)] [object] $Type, [parameter(Mandatory = $false)] $Relevance, [parameter(Mandatory = $false)] $Search ) Process { $obj = [KendraIndexDocumentMetadataConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraIndexDocumentMetadataConfiguration' function Add-VSKendraIndexJsonTokenTypeConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::Index.JsonTokenTypeConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::Index.JsonTokenTypeConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-jsontokentypeconfiguration.html .PARAMETER UserNameAttributeField Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-jsontokentypeconfiguration.html#cfn-kendra-index-jsontokentypeconfiguration-usernameattributefield UpdateType: Mutable PrimitiveType: String .PARAMETER GroupAttributeField Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-jsontokentypeconfiguration.html#cfn-kendra-index-jsontokentypeconfiguration-groupattributefield UpdateType: Mutable PrimitiveType: String .FUNCTIONALITY Vaporshell #> [OutputType([KendraIndexJsonTokenTypeConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] [object] $UserNameAttributeField, [parameter(Mandatory = $true)] [object] $GroupAttributeField ) Process { $obj = [KendraIndexJsonTokenTypeConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraIndexJsonTokenTypeConfiguration' function Add-VSKendraIndexJwtTokenTypeConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::Index.JwtTokenTypeConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::Index.JwtTokenTypeConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-jwttokentypeconfiguration.html .PARAMETER KeyLocation Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-jwttokentypeconfiguration.html#cfn-kendra-index-jwttokentypeconfiguration-keylocation UpdateType: Mutable PrimitiveType: String .PARAMETER URL Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-jwttokentypeconfiguration.html#cfn-kendra-index-jwttokentypeconfiguration-url UpdateType: Mutable PrimitiveType: String .PARAMETER SecretManagerArn Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-jwttokentypeconfiguration.html#cfn-kendra-index-jwttokentypeconfiguration-secretmanagerarn UpdateType: Mutable PrimitiveType: String .PARAMETER UserNameAttributeField Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-jwttokentypeconfiguration.html#cfn-kendra-index-jwttokentypeconfiguration-usernameattributefield UpdateType: Mutable PrimitiveType: String .PARAMETER GroupAttributeField Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-jwttokentypeconfiguration.html#cfn-kendra-index-jwttokentypeconfiguration-groupattributefield UpdateType: Mutable PrimitiveType: String .PARAMETER Issuer Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-jwttokentypeconfiguration.html#cfn-kendra-index-jwttokentypeconfiguration-issuer UpdateType: Mutable PrimitiveType: String .PARAMETER ClaimRegex Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-jwttokentypeconfiguration.html#cfn-kendra-index-jwttokentypeconfiguration-claimregex UpdateType: Mutable PrimitiveType: String .FUNCTIONALITY Vaporshell #> [OutputType([KendraIndexJwtTokenTypeConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $true)] [object] $KeyLocation, [parameter(Mandatory = $false)] [object] $URL, [parameter(Mandatory = $false)] [object] $SecretManagerArn, [parameter(Mandatory = $false)] [object] $UserNameAttributeField, [parameter(Mandatory = $false)] [object] $GroupAttributeField, [parameter(Mandatory = $false)] [object] $Issuer, [parameter(Mandatory = $false)] [object] $ClaimRegex ) Process { $obj = [KendraIndexJwtTokenTypeConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraIndexJwtTokenTypeConfiguration' function Add-VSKendraIndexRelevance { <# .SYNOPSIS Adds an AWS::Kendra::Index.Relevance resource property to the template. .DESCRIPTION Adds an AWS::Kendra::Index.Relevance resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-relevance.html .PARAMETER Freshness Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-relevance.html#cfn-kendra-index-relevance-freshness UpdateType: Mutable PrimitiveType: Boolean .PARAMETER Importance Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-relevance.html#cfn-kendra-index-relevance-importance UpdateType: Mutable PrimitiveType: Integer .PARAMETER Duration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-relevance.html#cfn-kendra-index-relevance-duration UpdateType: Mutable PrimitiveType: String .PARAMETER RankOrder Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-relevance.html#cfn-kendra-index-relevance-rankorder UpdateType: Mutable PrimitiveType: String .PARAMETER ValueImportanceItems Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-relevance.html#cfn-kendra-index-relevance-valueimportanceitems UpdateType: Mutable Type: List ItemType: ValueImportanceItem .FUNCTIONALITY Vaporshell #> [OutputType([KendraIndexRelevance])] [cmdletbinding()] Param( [parameter(Mandatory = $false)] [object] $Freshness, [parameter(Mandatory = $false)] [object] $Importance, [parameter(Mandatory = $false)] [object] $Duration, [parameter(Mandatory = $false)] [object] $RankOrder, [parameter(Mandatory = $false)] [object] $ValueImportanceItems ) Process { $obj = [KendraIndexRelevance]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraIndexRelevance' function Add-VSKendraIndexSearch { <# .SYNOPSIS Adds an AWS::Kendra::Index.Search resource property to the template. .DESCRIPTION Adds an AWS::Kendra::Index.Search resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-search.html .PARAMETER Facetable Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-search.html#cfn-kendra-index-search-facetable UpdateType: Mutable PrimitiveType: Boolean .PARAMETER Searchable Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-search.html#cfn-kendra-index-search-searchable UpdateType: Mutable PrimitiveType: Boolean .PARAMETER Displayable Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-search.html#cfn-kendra-index-search-displayable UpdateType: Mutable PrimitiveType: Boolean .PARAMETER Sortable Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-search.html#cfn-kendra-index-search-sortable UpdateType: Mutable PrimitiveType: Boolean .FUNCTIONALITY Vaporshell #> [OutputType([KendraIndexSearch])] [cmdletbinding()] Param( [parameter(Mandatory = $false)] [object] $Facetable, [parameter(Mandatory = $false)] [object] $Searchable, [parameter(Mandatory = $false)] [object] $Displayable, [parameter(Mandatory = $false)] [object] $Sortable ) Process { $obj = [KendraIndexSearch]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraIndexSearch' function Add-VSKendraIndexServerSideEncryptionConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::Index.ServerSideEncryptionConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::Index.ServerSideEncryptionConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-serversideencryptionconfiguration.html .PARAMETER KmsKeyId Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-serversideencryptionconfiguration.html#cfn-kendra-index-serversideencryptionconfiguration-kmskeyid UpdateType: Immutable PrimitiveType: String .FUNCTIONALITY Vaporshell #> [OutputType([KendraIndexServerSideEncryptionConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $false)] [object] $KmsKeyId ) Process { $obj = [KendraIndexServerSideEncryptionConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraIndexServerSideEncryptionConfiguration' function Add-VSKendraIndexUserTokenConfiguration { <# .SYNOPSIS Adds an AWS::Kendra::Index.UserTokenConfiguration resource property to the template. .DESCRIPTION Adds an AWS::Kendra::Index.UserTokenConfiguration resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-usertokenconfiguration.html .PARAMETER JwtTokenTypeConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-usertokenconfiguration.html#cfn-kendra-index-usertokenconfiguration-jwttokentypeconfiguration UpdateType: Mutable Type: JwtTokenTypeConfiguration .PARAMETER JsonTokenTypeConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-usertokenconfiguration.html#cfn-kendra-index-usertokenconfiguration-jsontokentypeconfiguration UpdateType: Mutable Type: JsonTokenTypeConfiguration .FUNCTIONALITY Vaporshell #> [OutputType([KendraIndexUserTokenConfiguration])] [cmdletbinding()] Param( [parameter(Mandatory = $false)] $JwtTokenTypeConfiguration, [parameter(Mandatory = $false)] $JsonTokenTypeConfiguration ) Process { $obj = [KendraIndexUserTokenConfiguration]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraIndexUserTokenConfiguration' function Add-VSKendraIndexValueImportanceItem { <# .SYNOPSIS Adds an AWS::Kendra::Index.ValueImportanceItem resource property to the template. .DESCRIPTION Adds an AWS::Kendra::Index.ValueImportanceItem resource property to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-valueimportanceitem.html .PARAMETER Key Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-valueimportanceitem.html#cfn-kendra-index-valueimportanceitem-key UpdateType: Mutable PrimitiveType: String .PARAMETER Value Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kendra-index-valueimportanceitem.html#cfn-kendra-index-valueimportanceitem-value UpdateType: Mutable PrimitiveType: Integer .FUNCTIONALITY Vaporshell #> [OutputType([KendraIndexValueImportanceItem])] [cmdletbinding()] Param( [parameter(Mandatory = $false)] [object] $Key, [parameter(Mandatory = $false)] [object] $Value ) Process { $obj = [KendraIndexValueImportanceItem]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'Add-VSKendraIndexValueImportanceItem' function New-VSKendraDataSource { <# .SYNOPSIS Adds an AWS::Kendra::DataSource resource to the template. .DESCRIPTION Adds an AWS::Kendra::DataSource resource to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-datasource.html .PARAMETER LogicalId The logical ID must be alphanumeric (A-Za-z0-9) and unique within the template. Use the logical name to reference the resource in other parts of the template. For example, if you want to map an Amazon Elastic Block Store volume to an Amazon EC2 instance, you reference the logical IDs to associate the block stores with the instance. .PARAMETER Name Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-datasource.html#cfn-kendra-datasource-name UpdateType: Mutable PrimitiveType: String .PARAMETER IndexId Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-datasource.html#cfn-kendra-datasource-indexid UpdateType: Mutable PrimitiveType: String .PARAMETER Type Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-datasource.html#cfn-kendra-datasource-type UpdateType: Immutable PrimitiveType: String .PARAMETER DataSourceConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-datasource.html#cfn-kendra-datasource-datasourceconfiguration UpdateType: Mutable Type: DataSourceConfiguration .PARAMETER Description Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-datasource.html#cfn-kendra-datasource-description UpdateType: Mutable PrimitiveType: String .PARAMETER Schedule Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-datasource.html#cfn-kendra-datasource-schedule UpdateType: Mutable PrimitiveType: String .PARAMETER RoleArn Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-datasource.html#cfn-kendra-datasource-rolearn UpdateType: Mutable PrimitiveType: String .PARAMETER Tags Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-datasource.html#cfn-kendra-datasource-tags UpdateType: Mutable Type: List ItemType: Tag .PARAMETER DeletionPolicy With the DeletionPolicy attribute you can preserve or (in some cases) backup a resource when its stack is deleted. You specify a DeletionPolicy attribute for each resource that you want to control. If a resource has no DeletionPolicy attribute, AWS CloudFormation deletes the resource by default. To keep a resource when its stack is deleted, specify Retain for that resource. You can use retain for any resource. For example, you can retain a nested stack, S3 bucket, or EC2 instance so that you can continue to use or modify those resources after you delete their stacks. You must use one of the following options: "Delete","Retain","Snapshot" .PARAMETER UpdateReplacePolicy Use the UpdateReplacePolicy attribute to retain or (in some cases) backup the existing physical instance of a resource when it is replaced during a stack update operation. When you initiate a stack update, AWS CloudFormation updates resources based on differences between what you submit and the stack's current template and parameters. If you update a resource property that requires that the resource be replaced, AWS CloudFormation recreates the resource during the update. Recreating the resource generates a new physical ID. AWS CloudFormation creates the replacement resource first, and then changes references from other dependent resources to point to the replacement resource. By default, AWS CloudFormation then deletes the old resource. Using the UpdateReplacePolicy, you can specify that AWS CloudFormation retain or (in some cases) create a snapshot of the old resource. For resources that support snapshots, such as AWS::EC2::Volume, specify Snapshot to have AWS CloudFormation create a snapshot before deleting the old resource instance. You can apply the UpdateReplacePolicy attribute to any resource. UpdateReplacePolicy is only executed if you update a resource property whose update behavior is specified as Replacement, thereby causing AWS CloudFormation to replace the old resource with a new one with a new physical ID. For example, if you update the Engine property of an AWS::RDS::DBInstance resource type, AWS CloudFormation creates a new resource and replaces the current DB instance resource with the new one. The UpdateReplacePolicy attribute would then dictate whether AWS CloudFormation deleted, retained, or created a snapshot of the old DB instance. The update behavior for each property of a resource is specified in the reference topic for that resource in the AWS Resource and Property Types Reference. For more information on resource update behavior, see Update Behaviors of Stack Resources. The UpdateReplacePolicy attribute applies to stack updates you perform directly, as well as stack updates performed using change sets. Note Resources that are retained continue to exist and continue to incur applicable charges until you delete those resources. Snapshots that are created with this policy continue to exist and continue to incur applicable charges until you delete those snapshots. UpdateReplacePolicy retains the old physical resource or snapshot, but removes it from AWS CloudFormation's scope. UpdateReplacePolicy differs from the DeletionPolicy attribute in that it only applies to resources replaced during stack updates. Use DeletionPolicy for resources deleted when a stack is deleted, or when the resource definition itself is deleted from the template as part of a stack update. You must use one of the following options: "Delete","Retain","Snapshot" .PARAMETER DependsOn With the DependsOn attribute you can specify that the creation of a specific resource follows another. When you add a DependsOn attribute to a resource, that resource is created only after the creation of the resource specified in the DependsOn attribute. This parameter takes a string or list of strings representing Logical IDs of resources that must be created prior to this resource being created. .PARAMETER Metadata The Metadata attribute enables you to associate structured data with a resource. By adding a Metadata attribute to a resource, you can add data in JSON or YAML to the resource declaration. In addition, you can use intrinsic functions (such as GetAtt and Ref), parameters, and pseudo parameters within the Metadata attribute to add those interpreted values. This will be returned when describing the resource using AWS CLI. .PARAMETER UpdatePolicy Use the UpdatePolicy attribute to specify how AWS CloudFormation handles updates to the AWS::AutoScaling::AutoScalingGroup resource. AWS CloudFormation invokes one of three update policies depending on the type of change you make or whether a scheduled action is associated with the Auto Scaling group. You must use the "Add-UpdatePolicy" function or the [UpdatePolicy] class here. .PARAMETER Condition Logical ID of the condition that this resource needs to be true in order for this resource to be provisioned. .FUNCTIONALITY Vaporshell #> [OutputType([KendraDataSource])] [cmdletbinding()] Param( [parameter(Mandatory = $true,Position = 0)] [ValidateLogicalId()] [string] $LogicalId, [parameter(Mandatory = $true)] [object] $Name, [parameter(Mandatory = $true)] [object] $IndexId, [parameter(Mandatory = $true)] [object] $Type, [parameter(Mandatory = $false)] $DataSourceConfiguration, [parameter(Mandatory = $false)] [object] $Description, [parameter(Mandatory = $false)] [object] $Schedule, [parameter(Mandatory = $false)] [object] $RoleArn, [TransformTag()] [object] [parameter(Mandatory = $false)] $Tags, [parameter()] [DeletionPolicy] $DeletionPolicy, [parameter()] [UpdateReplacePolicy] $UpdateReplacePolicy, [parameter(Mandatory = $false)] [string[]] $DependsOn, [parameter(Mandatory = $false)] [VSJson] $Metadata, [parameter(Mandatory = $false)] [UpdatePolicy] $UpdatePolicy, [parameter(Mandatory = $false)] [string] $Condition ) Process { $obj = [KendraDataSource]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'New-VSKendraDataSource' function New-VSKendraFaq { <# .SYNOPSIS Adds an AWS::Kendra::Faq resource to the template. .DESCRIPTION Adds an AWS::Kendra::Faq resource to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-faq.html .PARAMETER LogicalId The logical ID must be alphanumeric (A-Za-z0-9) and unique within the template. Use the logical name to reference the resource in other parts of the template. For example, if you want to map an Amazon Elastic Block Store volume to an Amazon EC2 instance, you reference the logical IDs to associate the block stores with the instance. .PARAMETER IndexId Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-faq.html#cfn-kendra-faq-indexid UpdateType: Immutable PrimitiveType: String .PARAMETER Name Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-faq.html#cfn-kendra-faq-name UpdateType: Immutable PrimitiveType: String .PARAMETER Description Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-faq.html#cfn-kendra-faq-description UpdateType: Immutable PrimitiveType: String .PARAMETER FileFormat Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-faq.html#cfn-kendra-faq-fileformat UpdateType: Immutable PrimitiveType: String .PARAMETER S3Path Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-faq.html#cfn-kendra-faq-s3path UpdateType: Immutable Type: S3Path .PARAMETER RoleArn Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-faq.html#cfn-kendra-faq-rolearn UpdateType: Immutable PrimitiveType: String .PARAMETER Tags Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-faq.html#cfn-kendra-faq-tags UpdateType: Mutable Type: List ItemType: Tag .PARAMETER DeletionPolicy With the DeletionPolicy attribute you can preserve or (in some cases) backup a resource when its stack is deleted. You specify a DeletionPolicy attribute for each resource that you want to control. If a resource has no DeletionPolicy attribute, AWS CloudFormation deletes the resource by default. To keep a resource when its stack is deleted, specify Retain for that resource. You can use retain for any resource. For example, you can retain a nested stack, S3 bucket, or EC2 instance so that you can continue to use or modify those resources after you delete their stacks. You must use one of the following options: "Delete","Retain","Snapshot" .PARAMETER UpdateReplacePolicy Use the UpdateReplacePolicy attribute to retain or (in some cases) backup the existing physical instance of a resource when it is replaced during a stack update operation. When you initiate a stack update, AWS CloudFormation updates resources based on differences between what you submit and the stack's current template and parameters. If you update a resource property that requires that the resource be replaced, AWS CloudFormation recreates the resource during the update. Recreating the resource generates a new physical ID. AWS CloudFormation creates the replacement resource first, and then changes references from other dependent resources to point to the replacement resource. By default, AWS CloudFormation then deletes the old resource. Using the UpdateReplacePolicy, you can specify that AWS CloudFormation retain or (in some cases) create a snapshot of the old resource. For resources that support snapshots, such as AWS::EC2::Volume, specify Snapshot to have AWS CloudFormation create a snapshot before deleting the old resource instance. You can apply the UpdateReplacePolicy attribute to any resource. UpdateReplacePolicy is only executed if you update a resource property whose update behavior is specified as Replacement, thereby causing AWS CloudFormation to replace the old resource with a new one with a new physical ID. For example, if you update the Engine property of an AWS::RDS::DBInstance resource type, AWS CloudFormation creates a new resource and replaces the current DB instance resource with the new one. The UpdateReplacePolicy attribute would then dictate whether AWS CloudFormation deleted, retained, or created a snapshot of the old DB instance. The update behavior for each property of a resource is specified in the reference topic for that resource in the AWS Resource and Property Types Reference. For more information on resource update behavior, see Update Behaviors of Stack Resources. The UpdateReplacePolicy attribute applies to stack updates you perform directly, as well as stack updates performed using change sets. Note Resources that are retained continue to exist and continue to incur applicable charges until you delete those resources. Snapshots that are created with this policy continue to exist and continue to incur applicable charges until you delete those snapshots. UpdateReplacePolicy retains the old physical resource or snapshot, but removes it from AWS CloudFormation's scope. UpdateReplacePolicy differs from the DeletionPolicy attribute in that it only applies to resources replaced during stack updates. Use DeletionPolicy for resources deleted when a stack is deleted, or when the resource definition itself is deleted from the template as part of a stack update. You must use one of the following options: "Delete","Retain","Snapshot" .PARAMETER DependsOn With the DependsOn attribute you can specify that the creation of a specific resource follows another. When you add a DependsOn attribute to a resource, that resource is created only after the creation of the resource specified in the DependsOn attribute. This parameter takes a string or list of strings representing Logical IDs of resources that must be created prior to this resource being created. .PARAMETER Metadata The Metadata attribute enables you to associate structured data with a resource. By adding a Metadata attribute to a resource, you can add data in JSON or YAML to the resource declaration. In addition, you can use intrinsic functions (such as GetAtt and Ref), parameters, and pseudo parameters within the Metadata attribute to add those interpreted values. This will be returned when describing the resource using AWS CLI. .PARAMETER UpdatePolicy Use the UpdatePolicy attribute to specify how AWS CloudFormation handles updates to the AWS::AutoScaling::AutoScalingGroup resource. AWS CloudFormation invokes one of three update policies depending on the type of change you make or whether a scheduled action is associated with the Auto Scaling group. You must use the "Add-UpdatePolicy" function or the [UpdatePolicy] class here. .PARAMETER Condition Logical ID of the condition that this resource needs to be true in order for this resource to be provisioned. .FUNCTIONALITY Vaporshell #> [OutputType([KendraFaq])] [cmdletbinding()] Param( [parameter(Mandatory = $true,Position = 0)] [ValidateLogicalId()] [string] $LogicalId, [parameter(Mandatory = $true)] [object] $IndexId, [parameter(Mandatory = $true)] [object] $Name, [parameter(Mandatory = $false)] [object] $Description, [parameter(Mandatory = $false)] [object] $FileFormat, [parameter(Mandatory = $true)] $S3Path, [parameter(Mandatory = $true)] [object] $RoleArn, [TransformTag()] [object] [parameter(Mandatory = $false)] $Tags, [parameter()] [DeletionPolicy] $DeletionPolicy, [parameter()] [UpdateReplacePolicy] $UpdateReplacePolicy, [parameter(Mandatory = $false)] [string[]] $DependsOn, [parameter(Mandatory = $false)] [VSJson] $Metadata, [parameter(Mandatory = $false)] [UpdatePolicy] $UpdatePolicy, [parameter(Mandatory = $false)] [string] $Condition ) Process { $obj = [KendraFaq]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'New-VSKendraFaq' function New-VSKendraIndex { <# .SYNOPSIS Adds an AWS::Kendra::Index resource to the template. .DESCRIPTION Adds an AWS::Kendra::Index resource to the template. .LINK http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-index.html .PARAMETER LogicalId The logical ID must be alphanumeric (A-Za-z0-9) and unique within the template. Use the logical name to reference the resource in other parts of the template. For example, if you want to map an Amazon Elastic Block Store volume to an Amazon EC2 instance, you reference the logical IDs to associate the block stores with the instance. .PARAMETER Description Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-index.html#cfn-kendra-index-description UpdateType: Mutable PrimitiveType: String .PARAMETER ServerSideEncryptionConfiguration Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-index.html#cfn-kendra-index-serversideencryptionconfiguration UpdateType: Immutable Type: ServerSideEncryptionConfiguration .PARAMETER Tags Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-index.html#cfn-kendra-index-tags UpdateType: Mutable Type: List ItemType: Tag .PARAMETER Name Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-index.html#cfn-kendra-index-name UpdateType: Mutable PrimitiveType: String .PARAMETER RoleArn Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-index.html#cfn-kendra-index-rolearn UpdateType: Mutable PrimitiveType: String .PARAMETER Edition Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-index.html#cfn-kendra-index-edition UpdateType: Immutable PrimitiveType: String .PARAMETER DocumentMetadataConfigurations Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-index.html#cfn-kendra-index-documentmetadataconfigurations UpdateType: Mutable Type: List ItemType: DocumentMetadataConfiguration .PARAMETER CapacityUnits Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-index.html#cfn-kendra-index-capacityunits UpdateType: Mutable Type: CapacityUnitsConfiguration .PARAMETER UserContextPolicy Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-index.html#cfn-kendra-index-usercontextpolicy UpdateType: Mutable PrimitiveType: String .PARAMETER UserTokenConfigurations Documentation: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kendra-index.html#cfn-kendra-index-usertokenconfigurations UpdateType: Mutable Type: List ItemType: UserTokenConfiguration .PARAMETER DeletionPolicy With the DeletionPolicy attribute you can preserve or (in some cases) backup a resource when its stack is deleted. You specify a DeletionPolicy attribute for each resource that you want to control. If a resource has no DeletionPolicy attribute, AWS CloudFormation deletes the resource by default. To keep a resource when its stack is deleted, specify Retain for that resource. You can use retain for any resource. For example, you can retain a nested stack, S3 bucket, or EC2 instance so that you can continue to use or modify those resources after you delete their stacks. You must use one of the following options: "Delete","Retain","Snapshot" .PARAMETER UpdateReplacePolicy Use the UpdateReplacePolicy attribute to retain or (in some cases) backup the existing physical instance of a resource when it is replaced during a stack update operation. When you initiate a stack update, AWS CloudFormation updates resources based on differences between what you submit and the stack's current template and parameters. If you update a resource property that requires that the resource be replaced, AWS CloudFormation recreates the resource during the update. Recreating the resource generates a new physical ID. AWS CloudFormation creates the replacement resource first, and then changes references from other dependent resources to point to the replacement resource. By default, AWS CloudFormation then deletes the old resource. Using the UpdateReplacePolicy, you can specify that AWS CloudFormation retain or (in some cases) create a snapshot of the old resource. For resources that support snapshots, such as AWS::EC2::Volume, specify Snapshot to have AWS CloudFormation create a snapshot before deleting the old resource instance. You can apply the UpdateReplacePolicy attribute to any resource. UpdateReplacePolicy is only executed if you update a resource property whose update behavior is specified as Replacement, thereby causing AWS CloudFormation to replace the old resource with a new one with a new physical ID. For example, if you update the Engine property of an AWS::RDS::DBInstance resource type, AWS CloudFormation creates a new resource and replaces the current DB instance resource with the new one. The UpdateReplacePolicy attribute would then dictate whether AWS CloudFormation deleted, retained, or created a snapshot of the old DB instance. The update behavior for each property of a resource is specified in the reference topic for that resource in the AWS Resource and Property Types Reference. For more information on resource update behavior, see Update Behaviors of Stack Resources. The UpdateReplacePolicy attribute applies to stack updates you perform directly, as well as stack updates performed using change sets. Note Resources that are retained continue to exist and continue to incur applicable charges until you delete those resources. Snapshots that are created with this policy continue to exist and continue to incur applicable charges until you delete those snapshots. UpdateReplacePolicy retains the old physical resource or snapshot, but removes it from AWS CloudFormation's scope. UpdateReplacePolicy differs from the DeletionPolicy attribute in that it only applies to resources replaced during stack updates. Use DeletionPolicy for resources deleted when a stack is deleted, or when the resource definition itself is deleted from the template as part of a stack update. You must use one of the following options: "Delete","Retain","Snapshot" .PARAMETER DependsOn With the DependsOn attribute you can specify that the creation of a specific resource follows another. When you add a DependsOn attribute to a resource, that resource is created only after the creation of the resource specified in the DependsOn attribute. This parameter takes a string or list of strings representing Logical IDs of resources that must be created prior to this resource being created. .PARAMETER Metadata The Metadata attribute enables you to associate structured data with a resource. By adding a Metadata attribute to a resource, you can add data in JSON or YAML to the resource declaration. In addition, you can use intrinsic functions (such as GetAtt and Ref), parameters, and pseudo parameters within the Metadata attribute to add those interpreted values. This will be returned when describing the resource using AWS CLI. .PARAMETER UpdatePolicy Use the UpdatePolicy attribute to specify how AWS CloudFormation handles updates to the AWS::AutoScaling::AutoScalingGroup resource. AWS CloudFormation invokes one of three update policies depending on the type of change you make or whether a scheduled action is associated with the Auto Scaling group. You must use the "Add-UpdatePolicy" function or the [UpdatePolicy] class here. .PARAMETER Condition Logical ID of the condition that this resource needs to be true in order for this resource to be provisioned. .FUNCTIONALITY Vaporshell #> [OutputType([KendraIndex])] [cmdletbinding()] Param( [parameter(Mandatory = $true,Position = 0)] [ValidateLogicalId()] [string] $LogicalId, [parameter(Mandatory = $false)] [object] $Description, [parameter(Mandatory = $false)] $ServerSideEncryptionConfiguration, [TransformTag()] [object] [parameter(Mandatory = $false)] $Tags, [parameter(Mandatory = $true)] [object] $Name, [parameter(Mandatory = $true)] [object] $RoleArn, [parameter(Mandatory = $true)] [object] $Edition, [parameter(Mandatory = $false)] [object] $DocumentMetadataConfigurations, [parameter(Mandatory = $false)] $CapacityUnits, [parameter(Mandatory = $false)] [object] $UserContextPolicy, [parameter(Mandatory = $false)] [object] $UserTokenConfigurations, [parameter()] [DeletionPolicy] $DeletionPolicy, [parameter()] [UpdateReplacePolicy] $UpdateReplacePolicy, [parameter(Mandatory = $false)] [string[]] $DependsOn, [parameter(Mandatory = $false)] [VSJson] $Metadata, [parameter(Mandatory = $false)] [UpdatePolicy] $UpdatePolicy, [parameter(Mandatory = $false)] [string] $Condition ) Process { $obj = [KendraIndex]::new($PSBoundParameters) Write-Debug "$($MyInvocation.MyCommand) PSBoundParameters:`n$($PSBoundParameters | ConvertTo-Json -Depth 20 | Format-Json)" Write-Verbose "Resulting object from $($MyInvocation.MyCommand): `n$($obj.ToJson() | Format-Json)" $obj } } Export-ModuleMember -Function 'New-VSKendraIndex' |