disassociateSourceViews
abstract suspend fun disassociateSourceViews(input: DisassociateSourceViewsRequest): DisassociateSourceViewsResponse
Removes the association between one or more source billing views and an existing billing view. This allows modifying the composition of aggregate billing views.
Samples
fun main() {
//sampleStart
// Invoke DisassociateSourceViews
val resp = billingClient.disassociateSourceViews {
arn = "arn:aws:billing::123456789012:billingview/custom-46f47cb2-a11d-43f3-983d-470b5708a899"
sourceViews = listOf<String>(
"arn:aws:billing::123456789012:billingview/primary",
"arn:aws:billing::123456789012:billingview/custom-d3f9c7e4-8b2f-4a6e-9d3b-2f7c8a1e5f6d"
)
}
//sampleEnd
}