aws-sdk-quicksight 1.183.0 → 1.185.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-quicksight/client.rb +1636 -55
- data/lib/aws-sdk-quicksight/client_api.rb +1078 -0
- data/lib/aws-sdk-quicksight/types.rb +2385 -0
- data/lib/aws-sdk-quicksight.rb +1 -1
- data/sig/client.rbs +500 -0
- data/sig/params.rbs +15 -0
- data/sig/types.rbs +654 -0
- metadata +1 -1
|
@@ -405,6 +405,169 @@ module Aws::QuickSight
|
|
|
405
405
|
include Aws::Structure
|
|
406
406
|
end
|
|
407
407
|
|
|
408
|
+
# An agent resource in Amazon QuickSight that provides AI-powered
|
|
409
|
+
# conversational experiences.
|
|
410
|
+
#
|
|
411
|
+
# @!attribute [rw] spaces
|
|
412
|
+
# The Amazon Resource Names (ARNs) of the spaces attached to the
|
|
413
|
+
# agent.
|
|
414
|
+
# @return [Array<String>]
|
|
415
|
+
#
|
|
416
|
+
# @!attribute [rw] action_connectors
|
|
417
|
+
# The Amazon Resource Names (ARNs) of the action connectors attached
|
|
418
|
+
# to the agent.
|
|
419
|
+
# @return [Array<String>]
|
|
420
|
+
#
|
|
421
|
+
# @!attribute [rw] description
|
|
422
|
+
# A description of the agent.
|
|
423
|
+
# @return [String]
|
|
424
|
+
#
|
|
425
|
+
# @!attribute [rw] icon_id
|
|
426
|
+
# The icon identifier for the agent.
|
|
427
|
+
# @return [String]
|
|
428
|
+
#
|
|
429
|
+
# @!attribute [rw] name
|
|
430
|
+
# The name of the agent.
|
|
431
|
+
# @return [String]
|
|
432
|
+
#
|
|
433
|
+
# @!attribute [rw] starter_prompts
|
|
434
|
+
# A list of starter prompts that are displayed to users when they
|
|
435
|
+
# begin interacting with the agent.
|
|
436
|
+
# @return [Array<String>]
|
|
437
|
+
#
|
|
438
|
+
# @!attribute [rw] welcome_message
|
|
439
|
+
# The welcome message that is displayed when a user starts a
|
|
440
|
+
# conversation with the agent.
|
|
441
|
+
# @return [String]
|
|
442
|
+
#
|
|
443
|
+
# @!attribute [rw] arn
|
|
444
|
+
# The Amazon Resource Name (ARN) of the agent.
|
|
445
|
+
# @return [String]
|
|
446
|
+
#
|
|
447
|
+
# @!attribute [rw] agent_id
|
|
448
|
+
# The unique identifier for the agent.
|
|
449
|
+
# @return [String]
|
|
450
|
+
#
|
|
451
|
+
# @!attribute [rw] agent_lifecycle
|
|
452
|
+
# The lifecycle state of the agent. Valid values are `PREVIEW` and
|
|
453
|
+
# `PUBLISHED`.
|
|
454
|
+
# @return [String]
|
|
455
|
+
#
|
|
456
|
+
# @!attribute [rw] agent_status
|
|
457
|
+
# The status of the agent.
|
|
458
|
+
# @return [String]
|
|
459
|
+
#
|
|
460
|
+
# @!attribute [rw] created_at
|
|
461
|
+
# The date and time that the agent was created.
|
|
462
|
+
# @return [Time]
|
|
463
|
+
#
|
|
464
|
+
# @!attribute [rw] creator
|
|
465
|
+
# The identity of the user who created the agent.
|
|
466
|
+
# @return [String]
|
|
467
|
+
#
|
|
468
|
+
# @!attribute [rw] custom_prompt_interface
|
|
469
|
+
# The custom prompt interface configuration for the agent.
|
|
470
|
+
# @return [Types::CustomPromptInterface]
|
|
471
|
+
#
|
|
472
|
+
# @!attribute [rw] error_message
|
|
473
|
+
# An error message associated with the agent, if applicable.
|
|
474
|
+
# @return [String]
|
|
475
|
+
#
|
|
476
|
+
# @!attribute [rw] updated_at
|
|
477
|
+
# The date and time that the agent was last updated.
|
|
478
|
+
# @return [Time]
|
|
479
|
+
#
|
|
480
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/Agent AWS API Documentation
|
|
481
|
+
#
|
|
482
|
+
class Agent < Struct.new(
|
|
483
|
+
:spaces,
|
|
484
|
+
:action_connectors,
|
|
485
|
+
:description,
|
|
486
|
+
:icon_id,
|
|
487
|
+
:name,
|
|
488
|
+
:starter_prompts,
|
|
489
|
+
:welcome_message,
|
|
490
|
+
:arn,
|
|
491
|
+
:agent_id,
|
|
492
|
+
:agent_lifecycle,
|
|
493
|
+
:agent_status,
|
|
494
|
+
:created_at,
|
|
495
|
+
:creator,
|
|
496
|
+
:custom_prompt_interface,
|
|
497
|
+
:error_message,
|
|
498
|
+
:updated_at)
|
|
499
|
+
SENSITIVE = [:starter_prompts, :welcome_message]
|
|
500
|
+
include Aws::Structure
|
|
501
|
+
end
|
|
502
|
+
|
|
503
|
+
# A filter to apply when searching agents.
|
|
504
|
+
#
|
|
505
|
+
# @!attribute [rw] name
|
|
506
|
+
# The name of the field to filter on.
|
|
507
|
+
# @return [String]
|
|
508
|
+
#
|
|
509
|
+
# @!attribute [rw] operator
|
|
510
|
+
# The comparison operator to use for the filter.
|
|
511
|
+
# @return [String]
|
|
512
|
+
#
|
|
513
|
+
# @!attribute [rw] value
|
|
514
|
+
# The value to filter on.
|
|
515
|
+
# @return [String]
|
|
516
|
+
#
|
|
517
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AgentSearchFilter AWS API Documentation
|
|
518
|
+
#
|
|
519
|
+
class AgentSearchFilter < Struct.new(
|
|
520
|
+
:name,
|
|
521
|
+
:operator,
|
|
522
|
+
:value)
|
|
523
|
+
SENSITIVE = []
|
|
524
|
+
include Aws::Structure
|
|
525
|
+
end
|
|
526
|
+
|
|
527
|
+
# A summary of an agent, including its identifier, name, and metadata.
|
|
528
|
+
#
|
|
529
|
+
# @!attribute [rw] arn
|
|
530
|
+
# The Amazon Resource Name (ARN) of the agent.
|
|
531
|
+
# @return [String]
|
|
532
|
+
#
|
|
533
|
+
# @!attribute [rw] agent_id
|
|
534
|
+
# The unique identifier for the agent.
|
|
535
|
+
# @return [String]
|
|
536
|
+
#
|
|
537
|
+
# @!attribute [rw] name
|
|
538
|
+
# The name of the agent.
|
|
539
|
+
# @return [String]
|
|
540
|
+
#
|
|
541
|
+
# @!attribute [rw] description
|
|
542
|
+
# A description of the agent.
|
|
543
|
+
# @return [String]
|
|
544
|
+
#
|
|
545
|
+
# @!attribute [rw] created_at
|
|
546
|
+
# The date and time that the agent was created.
|
|
547
|
+
# @return [Time]
|
|
548
|
+
#
|
|
549
|
+
# @!attribute [rw] updated_at
|
|
550
|
+
# The date and time that the agent was last updated.
|
|
551
|
+
# @return [Time]
|
|
552
|
+
#
|
|
553
|
+
# @!attribute [rw] icon_id
|
|
554
|
+
# The icon identifier for the agent.
|
|
555
|
+
# @return [String]
|
|
556
|
+
#
|
|
557
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/AgentSummary AWS API Documentation
|
|
558
|
+
#
|
|
559
|
+
class AgentSummary < Struct.new(
|
|
560
|
+
:arn,
|
|
561
|
+
:agent_id,
|
|
562
|
+
:name,
|
|
563
|
+
:description,
|
|
564
|
+
:created_at,
|
|
565
|
+
:updated_at,
|
|
566
|
+
:icon_id)
|
|
567
|
+
SENSITIVE = []
|
|
568
|
+
include Aws::Structure
|
|
569
|
+
end
|
|
570
|
+
|
|
408
571
|
# The definition of an Agg function.
|
|
409
572
|
#
|
|
410
573
|
# @!attribute [rw] aggregation
|
|
@@ -7860,6 +8023,105 @@ module Aws::QuickSight
|
|
|
7860
8023
|
include Aws::Structure
|
|
7861
8024
|
end
|
|
7862
8025
|
|
|
8026
|
+
# @!attribute [rw] spaces
|
|
8027
|
+
# The Amazon Resource Names (ARNs) of the spaces to attach to the
|
|
8028
|
+
# agent.
|
|
8029
|
+
# @return [Array<String>]
|
|
8030
|
+
#
|
|
8031
|
+
# @!attribute [rw] action_connectors
|
|
8032
|
+
# The Amazon Resource Names (ARNs) of the action connectors to attach
|
|
8033
|
+
# to the agent.
|
|
8034
|
+
# @return [Array<String>]
|
|
8035
|
+
#
|
|
8036
|
+
# @!attribute [rw] aws_account_id
|
|
8037
|
+
# The ID of the Amazon Web Services account that contains the agent.
|
|
8038
|
+
# @return [String]
|
|
8039
|
+
#
|
|
8040
|
+
# @!attribute [rw] agent_id
|
|
8041
|
+
# A unique identifier for the agent.
|
|
8042
|
+
# @return [String]
|
|
8043
|
+
#
|
|
8044
|
+
# @!attribute [rw] name
|
|
8045
|
+
# The name of the agent.
|
|
8046
|
+
# @return [String]
|
|
8047
|
+
#
|
|
8048
|
+
# @!attribute [rw] description
|
|
8049
|
+
# A description of the agent.
|
|
8050
|
+
# @return [String]
|
|
8051
|
+
#
|
|
8052
|
+
# @!attribute [rw] icon_id
|
|
8053
|
+
# The icon identifier for the agent.
|
|
8054
|
+
# @return [String]
|
|
8055
|
+
#
|
|
8056
|
+
# @!attribute [rw] starter_prompts
|
|
8057
|
+
# A list of starter prompts that are displayed to users when they
|
|
8058
|
+
# begin interacting with the agent.
|
|
8059
|
+
# @return [Array<String>]
|
|
8060
|
+
#
|
|
8061
|
+
# @!attribute [rw] welcome_message
|
|
8062
|
+
# The welcome message that is displayed when a user starts a
|
|
8063
|
+
# conversation with the agent.
|
|
8064
|
+
# @return [String]
|
|
8065
|
+
#
|
|
8066
|
+
# @!attribute [rw] agent_lifecycle
|
|
8067
|
+
# The lifecycle state of the agent. Valid values are `PREVIEW` and
|
|
8068
|
+
# `PUBLISHED`.
|
|
8069
|
+
# @return [String]
|
|
8070
|
+
#
|
|
8071
|
+
# @!attribute [rw] custom_prompt_input
|
|
8072
|
+
# The custom prompt configuration for the agent.
|
|
8073
|
+
# @return [Types::CustomPromptInput]
|
|
8074
|
+
#
|
|
8075
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateAgentRequest AWS API Documentation
|
|
8076
|
+
#
|
|
8077
|
+
class CreateAgentRequest < Struct.new(
|
|
8078
|
+
:spaces,
|
|
8079
|
+
:action_connectors,
|
|
8080
|
+
:aws_account_id,
|
|
8081
|
+
:agent_id,
|
|
8082
|
+
:name,
|
|
8083
|
+
:description,
|
|
8084
|
+
:icon_id,
|
|
8085
|
+
:starter_prompts,
|
|
8086
|
+
:welcome_message,
|
|
8087
|
+
:agent_lifecycle,
|
|
8088
|
+
:custom_prompt_input)
|
|
8089
|
+
SENSITIVE = [:starter_prompts, :welcome_message, :custom_prompt_input]
|
|
8090
|
+
include Aws::Structure
|
|
8091
|
+
end
|
|
8092
|
+
|
|
8093
|
+
# @!attribute [rw] arn
|
|
8094
|
+
# The Amazon Resource Name (ARN) of the agent.
|
|
8095
|
+
# @return [String]
|
|
8096
|
+
#
|
|
8097
|
+
# @!attribute [rw] agent_id
|
|
8098
|
+
# The unique identifier for the agent.
|
|
8099
|
+
# @return [String]
|
|
8100
|
+
#
|
|
8101
|
+
# @!attribute [rw] agent_status
|
|
8102
|
+
# The status of the agent.
|
|
8103
|
+
# @return [String]
|
|
8104
|
+
#
|
|
8105
|
+
# @!attribute [rw] agent_name
|
|
8106
|
+
# The name of the agent.
|
|
8107
|
+
# @return [String]
|
|
8108
|
+
#
|
|
8109
|
+
# @!attribute [rw] request_id
|
|
8110
|
+
# The Amazon Web Services request ID for this operation.
|
|
8111
|
+
# @return [String]
|
|
8112
|
+
#
|
|
8113
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateAgentResponse AWS API Documentation
|
|
8114
|
+
#
|
|
8115
|
+
class CreateAgentResponse < Struct.new(
|
|
8116
|
+
:arn,
|
|
8117
|
+
:agent_id,
|
|
8118
|
+
:agent_status,
|
|
8119
|
+
:agent_name,
|
|
8120
|
+
:request_id)
|
|
8121
|
+
SENSITIVE = []
|
|
8122
|
+
include Aws::Structure
|
|
8123
|
+
end
|
|
8124
|
+
|
|
7863
8125
|
# @!attribute [rw] aws_account_id
|
|
7864
8126
|
# The ID of the Amazon Web Services account where you are creating an
|
|
7865
8127
|
# analysis.
|
|
@@ -8569,6 +8831,84 @@ module Aws::QuickSight
|
|
|
8569
8831
|
include Aws::Structure
|
|
8570
8832
|
end
|
|
8571
8833
|
|
|
8834
|
+
# @!attribute [rw] aws_account_id
|
|
8835
|
+
# The ID of the Amazon Web Services account where you want to create
|
|
8836
|
+
# the flow.
|
|
8837
|
+
# @return [String]
|
|
8838
|
+
#
|
|
8839
|
+
# @!attribute [rw] name
|
|
8840
|
+
# The display name for the flow.
|
|
8841
|
+
# @return [String]
|
|
8842
|
+
#
|
|
8843
|
+
# @!attribute [rw] description
|
|
8844
|
+
# The description for the flow.
|
|
8845
|
+
# @return [String]
|
|
8846
|
+
#
|
|
8847
|
+
# @!attribute [rw] flow_definition
|
|
8848
|
+
# The definition of the flow, specifying the steps and configurations.
|
|
8849
|
+
# This is the flow definition in Quick Flow's internal format. The
|
|
8850
|
+
# format is subject to change.
|
|
8851
|
+
#
|
|
8852
|
+
# <note markdown="1"> Always derive or depend on the flow definition from the
|
|
8853
|
+
# `DescribeFlow` operation to ensure you are working with the latest
|
|
8854
|
+
# format.
|
|
8855
|
+
#
|
|
8856
|
+
# </note>
|
|
8857
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
|
8858
|
+
#
|
|
8859
|
+
# @!attribute [rw] permissions
|
|
8860
|
+
# Initial permissions for the flow. If omitted, the flow is created
|
|
8861
|
+
# without any permissions.
|
|
8862
|
+
# @return [Array<Types::Permission>]
|
|
8863
|
+
#
|
|
8864
|
+
# @!attribute [rw] client_token
|
|
8865
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
8866
|
+
# idempotency of the request.
|
|
8867
|
+
#
|
|
8868
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
8869
|
+
# not need to pass this option.
|
|
8870
|
+
# @return [String]
|
|
8871
|
+
#
|
|
8872
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateFlowRequest AWS API Documentation
|
|
8873
|
+
#
|
|
8874
|
+
class CreateFlowRequest < Struct.new(
|
|
8875
|
+
:aws_account_id,
|
|
8876
|
+
:name,
|
|
8877
|
+
:description,
|
|
8878
|
+
:flow_definition,
|
|
8879
|
+
:permissions,
|
|
8880
|
+
:client_token)
|
|
8881
|
+
SENSITIVE = [:flow_definition]
|
|
8882
|
+
include Aws::Structure
|
|
8883
|
+
end
|
|
8884
|
+
|
|
8885
|
+
# @!attribute [rw] arn
|
|
8886
|
+
# The Amazon Resource Name (ARN) of the flow.
|
|
8887
|
+
# @return [String]
|
|
8888
|
+
#
|
|
8889
|
+
# @!attribute [rw] flow_id
|
|
8890
|
+
# The unique identifier of the flow.
|
|
8891
|
+
# @return [String]
|
|
8892
|
+
#
|
|
8893
|
+
# @!attribute [rw] request_id
|
|
8894
|
+
# The Amazon Web Services request ID for this operation.
|
|
8895
|
+
# @return [String]
|
|
8896
|
+
#
|
|
8897
|
+
# @!attribute [rw] status
|
|
8898
|
+
# The HTTP status of the request.
|
|
8899
|
+
# @return [Integer]
|
|
8900
|
+
#
|
|
8901
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateFlowResponse AWS API Documentation
|
|
8902
|
+
#
|
|
8903
|
+
class CreateFlowResponse < Struct.new(
|
|
8904
|
+
:arn,
|
|
8905
|
+
:flow_id,
|
|
8906
|
+
:request_id,
|
|
8907
|
+
:status)
|
|
8908
|
+
SENSITIVE = []
|
|
8909
|
+
include Aws::Structure
|
|
8910
|
+
end
|
|
8911
|
+
|
|
8572
8912
|
# @!attribute [rw] aws_account_id
|
|
8573
8913
|
# The ID for the Amazon Web Services account that contains the folder.
|
|
8574
8914
|
# @return [String]
|
|
@@ -9048,6 +9388,117 @@ module Aws::QuickSight
|
|
|
9048
9388
|
include Aws::Structure
|
|
9049
9389
|
end
|
|
9050
9390
|
|
|
9391
|
+
# @!attribute [rw] aws_account_id
|
|
9392
|
+
# The Amazon Web Services account ID.
|
|
9393
|
+
# @return [String]
|
|
9394
|
+
#
|
|
9395
|
+
# @!attribute [rw] o_auth_client_application_id
|
|
9396
|
+
# An ID for the OAuthClientApplication that you want to create. This
|
|
9397
|
+
# ID is unique per Amazon Web Services Region for each Amazon Web
|
|
9398
|
+
# Services account.
|
|
9399
|
+
# @return [String]
|
|
9400
|
+
#
|
|
9401
|
+
# @!attribute [rw] name
|
|
9402
|
+
# The display name for the OAuthClientApplication.
|
|
9403
|
+
# @return [String]
|
|
9404
|
+
#
|
|
9405
|
+
# @!attribute [rw] o_auth_client_authentication_type
|
|
9406
|
+
# The authentication type to use for the OAuthClientApplication. This
|
|
9407
|
+
# determines the OAuth 2.0 grant flow that is used when the data
|
|
9408
|
+
# source connects to the identity provider. Valid values are `TOKEN`.
|
|
9409
|
+
# @return [String]
|
|
9410
|
+
#
|
|
9411
|
+
# @!attribute [rw] client_id
|
|
9412
|
+
# The client ID of the OAuth application that is registered with the
|
|
9413
|
+
# identity provider.
|
|
9414
|
+
# @return [String]
|
|
9415
|
+
#
|
|
9416
|
+
# @!attribute [rw] client_secret
|
|
9417
|
+
# The client secret of the OAuth application that is registered with
|
|
9418
|
+
# the identity provider.
|
|
9419
|
+
# @return [String]
|
|
9420
|
+
#
|
|
9421
|
+
# @!attribute [rw] o_auth_token_endpoint_url
|
|
9422
|
+
# The token endpoint URL of the identity provider that is used to
|
|
9423
|
+
# obtain access tokens.
|
|
9424
|
+
# @return [String]
|
|
9425
|
+
#
|
|
9426
|
+
# @!attribute [rw] o_auth_authorization_endpoint_url
|
|
9427
|
+
# The authorization endpoint URL of the identity provider that is used
|
|
9428
|
+
# to obtain authorization codes.
|
|
9429
|
+
# @return [String]
|
|
9430
|
+
#
|
|
9431
|
+
# @!attribute [rw] o_auth_scopes
|
|
9432
|
+
# The OAuth scopes that are requested when the OAuthClientApplication
|
|
9433
|
+
# obtains an access token from the identity provider.
|
|
9434
|
+
# @return [String]
|
|
9435
|
+
#
|
|
9436
|
+
# @!attribute [rw] data_source_type
|
|
9437
|
+
# The type of data source that the OAuthClientApplication is used
|
|
9438
|
+
# with. Valid values are `SNOWFLAKE`.
|
|
9439
|
+
# @return [String]
|
|
9440
|
+
#
|
|
9441
|
+
# @!attribute [rw] identity_provider_vpc_connection_properties
|
|
9442
|
+
# VPC connection properties.
|
|
9443
|
+
# @return [Types::VpcConnectionProperties]
|
|
9444
|
+
#
|
|
9445
|
+
# @!attribute [rw] tags
|
|
9446
|
+
# Contains a map of the key-value pairs for the resource tag or tags
|
|
9447
|
+
# assigned to the OAuthClientApplication.
|
|
9448
|
+
# @return [Array<Types::Tag>]
|
|
9449
|
+
#
|
|
9450
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateOAuthClientApplicationRequest AWS API Documentation
|
|
9451
|
+
#
|
|
9452
|
+
class CreateOAuthClientApplicationRequest < Struct.new(
|
|
9453
|
+
:aws_account_id,
|
|
9454
|
+
:o_auth_client_application_id,
|
|
9455
|
+
:name,
|
|
9456
|
+
:o_auth_client_authentication_type,
|
|
9457
|
+
:client_id,
|
|
9458
|
+
:client_secret,
|
|
9459
|
+
:o_auth_token_endpoint_url,
|
|
9460
|
+
:o_auth_authorization_endpoint_url,
|
|
9461
|
+
:o_auth_scopes,
|
|
9462
|
+
:data_source_type,
|
|
9463
|
+
:identity_provider_vpc_connection_properties,
|
|
9464
|
+
:tags)
|
|
9465
|
+
SENSITIVE = [:client_id, :client_secret, :o_auth_token_endpoint_url, :o_auth_authorization_endpoint_url]
|
|
9466
|
+
include Aws::Structure
|
|
9467
|
+
end
|
|
9468
|
+
|
|
9469
|
+
# @!attribute [rw] arn
|
|
9470
|
+
# The Amazon Resource Name (ARN) of the OAuthClientApplication.
|
|
9471
|
+
# @return [String]
|
|
9472
|
+
#
|
|
9473
|
+
# @!attribute [rw] o_auth_client_application_id
|
|
9474
|
+
# The ID of the OAuthClientApplication. This ID is unique per Amazon
|
|
9475
|
+
# Web Services Region for each Amazon Web Services account.
|
|
9476
|
+
# @return [String]
|
|
9477
|
+
#
|
|
9478
|
+
# @!attribute [rw] creation_status
|
|
9479
|
+
# The status of creating the OAuthClientApplication.
|
|
9480
|
+
# @return [String]
|
|
9481
|
+
#
|
|
9482
|
+
# @!attribute [rw] request_id
|
|
9483
|
+
# The Amazon Web Services request ID for this operation.
|
|
9484
|
+
# @return [String]
|
|
9485
|
+
#
|
|
9486
|
+
# @!attribute [rw] status
|
|
9487
|
+
# The HTTP status of the request.
|
|
9488
|
+
# @return [Integer]
|
|
9489
|
+
#
|
|
9490
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateOAuthClientApplicationResponse AWS API Documentation
|
|
9491
|
+
#
|
|
9492
|
+
class CreateOAuthClientApplicationResponse < Struct.new(
|
|
9493
|
+
:arn,
|
|
9494
|
+
:o_auth_client_application_id,
|
|
9495
|
+
:creation_status,
|
|
9496
|
+
:request_id,
|
|
9497
|
+
:status)
|
|
9498
|
+
SENSITIVE = []
|
|
9499
|
+
include Aws::Structure
|
|
9500
|
+
end
|
|
9501
|
+
|
|
9051
9502
|
# @!attribute [rw] data_set_id
|
|
9052
9503
|
# The ID of the dataset.
|
|
9053
9504
|
# @return [String]
|
|
@@ -9144,6 +9595,56 @@ module Aws::QuickSight
|
|
|
9144
9595
|
include Aws::Structure
|
|
9145
9596
|
end
|
|
9146
9597
|
|
|
9598
|
+
# @!attribute [rw] aws_account_id
|
|
9599
|
+
# The ID of the Amazon Web Services account that contains the space.
|
|
9600
|
+
# @return [String]
|
|
9601
|
+
#
|
|
9602
|
+
# @!attribute [rw] space_id
|
|
9603
|
+
# The ID of the space. This ID is unique per Amazon Web Services
|
|
9604
|
+
# Region for each Amazon Web Services account.
|
|
9605
|
+
# @return [String]
|
|
9606
|
+
#
|
|
9607
|
+
# @!attribute [rw] name
|
|
9608
|
+
# A display name for the space.
|
|
9609
|
+
# @return [String]
|
|
9610
|
+
#
|
|
9611
|
+
# @!attribute [rw] description
|
|
9612
|
+
# A description of the space.
|
|
9613
|
+
# @return [String]
|
|
9614
|
+
#
|
|
9615
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateSpaceRequest AWS API Documentation
|
|
9616
|
+
#
|
|
9617
|
+
class CreateSpaceRequest < Struct.new(
|
|
9618
|
+
:aws_account_id,
|
|
9619
|
+
:space_id,
|
|
9620
|
+
:name,
|
|
9621
|
+
:description)
|
|
9622
|
+
SENSITIVE = [:description]
|
|
9623
|
+
include Aws::Structure
|
|
9624
|
+
end
|
|
9625
|
+
|
|
9626
|
+
# @!attribute [rw] space_id
|
|
9627
|
+
# The ID of the space.
|
|
9628
|
+
# @return [String]
|
|
9629
|
+
#
|
|
9630
|
+
# @!attribute [rw] space_arn
|
|
9631
|
+
# The ARN of the space.
|
|
9632
|
+
# @return [String]
|
|
9633
|
+
#
|
|
9634
|
+
# @!attribute [rw] request_id
|
|
9635
|
+
# The Amazon Web Services request ID for this operation.
|
|
9636
|
+
# @return [String]
|
|
9637
|
+
#
|
|
9638
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CreateSpaceResponse AWS API Documentation
|
|
9639
|
+
#
|
|
9640
|
+
class CreateSpaceResponse < Struct.new(
|
|
9641
|
+
:space_id,
|
|
9642
|
+
:space_arn,
|
|
9643
|
+
:request_id)
|
|
9644
|
+
SENSITIVE = []
|
|
9645
|
+
include Aws::Structure
|
|
9646
|
+
end
|
|
9647
|
+
|
|
9147
9648
|
# @!attribute [rw] aws_account_id
|
|
9148
9649
|
# The ID of the Amazon Web Services account that contains the template
|
|
9149
9650
|
# that you creating an alias for.
|
|
@@ -10221,6 +10722,147 @@ module Aws::QuickSight
|
|
|
10221
10722
|
include Aws::Structure
|
|
10222
10723
|
end
|
|
10223
10724
|
|
|
10725
|
+
# The custom prompt input for an agent. This is a union type that can be
|
|
10726
|
+
# either an existing prompt profile or new prompt parameters.
|
|
10727
|
+
#
|
|
10728
|
+
# @note CustomPromptInput is a union - when making an API calls you must set exactly one of the members.
|
|
10729
|
+
#
|
|
10730
|
+
# @!attribute [rw] existing_prompt
|
|
10731
|
+
# An existing custom prompt profile to use for the agent.
|
|
10732
|
+
# @return [Types::CustomPromptProfile]
|
|
10733
|
+
#
|
|
10734
|
+
# @!attribute [rw] new_prompt
|
|
10735
|
+
# New custom prompt parameters to configure for the agent.
|
|
10736
|
+
# @return [Types::CustomPromptInputParameters]
|
|
10737
|
+
#
|
|
10738
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CustomPromptInput AWS API Documentation
|
|
10739
|
+
#
|
|
10740
|
+
class CustomPromptInput < Struct.new(
|
|
10741
|
+
:existing_prompt,
|
|
10742
|
+
:new_prompt,
|
|
10743
|
+
:unknown)
|
|
10744
|
+
SENSITIVE = []
|
|
10745
|
+
include Aws::Structure
|
|
10746
|
+
include Aws::Structure::Union
|
|
10747
|
+
|
|
10748
|
+
class ExistingPrompt < CustomPromptInput; end
|
|
10749
|
+
class NewPrompt < CustomPromptInput; end
|
|
10750
|
+
class Unknown < CustomPromptInput; end
|
|
10751
|
+
end
|
|
10752
|
+
|
|
10753
|
+
# The parameters for configuring a custom prompt for an agent.
|
|
10754
|
+
#
|
|
10755
|
+
# @!attribute [rw] response_length
|
|
10756
|
+
# Instructions for the desired response length.
|
|
10757
|
+
# @return [String]
|
|
10758
|
+
#
|
|
10759
|
+
# @!attribute [rw] output_style
|
|
10760
|
+
# Instructions for the desired output style.
|
|
10761
|
+
# @return [String]
|
|
10762
|
+
#
|
|
10763
|
+
# @!attribute [rw] identity
|
|
10764
|
+
# Instructions that define the agent's identity and persona.
|
|
10765
|
+
# @return [String]
|
|
10766
|
+
#
|
|
10767
|
+
# @!attribute [rw] tone
|
|
10768
|
+
# Instructions for the desired tone of responses.
|
|
10769
|
+
# @return [String]
|
|
10770
|
+
#
|
|
10771
|
+
# @!attribute [rw] custom_instructions
|
|
10772
|
+
# Custom instructions for the agent's behavior.
|
|
10773
|
+
# @return [String]
|
|
10774
|
+
#
|
|
10775
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CustomPromptInputParameters AWS API Documentation
|
|
10776
|
+
#
|
|
10777
|
+
class CustomPromptInputParameters < Struct.new(
|
|
10778
|
+
:response_length,
|
|
10779
|
+
:output_style,
|
|
10780
|
+
:identity,
|
|
10781
|
+
:tone,
|
|
10782
|
+
:custom_instructions)
|
|
10783
|
+
SENSITIVE = [:response_length, :output_style, :identity, :tone, :custom_instructions]
|
|
10784
|
+
include Aws::Structure
|
|
10785
|
+
end
|
|
10786
|
+
|
|
10787
|
+
# The custom prompt interface configuration that defines how an agent's
|
|
10788
|
+
# prompt is configured.
|
|
10789
|
+
#
|
|
10790
|
+
# @!attribute [rw] model_profile_id
|
|
10791
|
+
# The identifier of the model profile.
|
|
10792
|
+
# @return [String]
|
|
10793
|
+
#
|
|
10794
|
+
# @!attribute [rw] subscription_id
|
|
10795
|
+
# The subscription identifier.
|
|
10796
|
+
# @return [String]
|
|
10797
|
+
#
|
|
10798
|
+
# @!attribute [rw] qbs_aws_account_id
|
|
10799
|
+
# The Amazon Web Services account ID for the Q Business service.
|
|
10800
|
+
# @return [String]
|
|
10801
|
+
#
|
|
10802
|
+
# @!attribute [rw] response_length
|
|
10803
|
+
# Instructions for the desired response length.
|
|
10804
|
+
# @return [String]
|
|
10805
|
+
#
|
|
10806
|
+
# @!attribute [rw] output_style
|
|
10807
|
+
# Instructions for the desired output style.
|
|
10808
|
+
# @return [String]
|
|
10809
|
+
#
|
|
10810
|
+
# @!attribute [rw] identity
|
|
10811
|
+
# Instructions that define the agent's identity and persona.
|
|
10812
|
+
# @return [String]
|
|
10813
|
+
#
|
|
10814
|
+
# @!attribute [rw] tone
|
|
10815
|
+
# Instructions for the desired tone of responses.
|
|
10816
|
+
# @return [String]
|
|
10817
|
+
#
|
|
10818
|
+
# @!attribute [rw] custom_instructions
|
|
10819
|
+
# Custom instructions for the agent's behavior.
|
|
10820
|
+
# @return [String]
|
|
10821
|
+
#
|
|
10822
|
+
# @!attribute [rw] prompt_summary
|
|
10823
|
+
# A summary of the custom prompt configuration.
|
|
10824
|
+
# @return [String]
|
|
10825
|
+
#
|
|
10826
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CustomPromptInterface AWS API Documentation
|
|
10827
|
+
#
|
|
10828
|
+
class CustomPromptInterface < Struct.new(
|
|
10829
|
+
:model_profile_id,
|
|
10830
|
+
:subscription_id,
|
|
10831
|
+
:qbs_aws_account_id,
|
|
10832
|
+
:response_length,
|
|
10833
|
+
:output_style,
|
|
10834
|
+
:identity,
|
|
10835
|
+
:tone,
|
|
10836
|
+
:custom_instructions,
|
|
10837
|
+
:prompt_summary)
|
|
10838
|
+
SENSITIVE = [:response_length, :output_style, :identity, :tone, :custom_instructions, :prompt_summary]
|
|
10839
|
+
include Aws::Structure
|
|
10840
|
+
end
|
|
10841
|
+
|
|
10842
|
+
# A reference to an existing custom prompt profile.
|
|
10843
|
+
#
|
|
10844
|
+
# @!attribute [rw] model_profile_id
|
|
10845
|
+
# The identifier of the model profile.
|
|
10846
|
+
# @return [String]
|
|
10847
|
+
#
|
|
10848
|
+
# @!attribute [rw] subscription_id
|
|
10849
|
+
# The subscription identifier.
|
|
10850
|
+
# @return [String]
|
|
10851
|
+
#
|
|
10852
|
+
# @!attribute [rw] qbs_aws_account_id
|
|
10853
|
+
# The Amazon Web Services account ID for the Q Business service.
|
|
10854
|
+
# @return [String]
|
|
10855
|
+
#
|
|
10856
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/CustomPromptProfile AWS API Documentation
|
|
10857
|
+
#
|
|
10858
|
+
class CustomPromptProfile < Struct.new(
|
|
10859
|
+
:model_profile_id,
|
|
10860
|
+
:subscription_id,
|
|
10861
|
+
:qbs_aws_account_id)
|
|
10862
|
+
SENSITIVE = []
|
|
10863
|
+
include Aws::Structure
|
|
10864
|
+
end
|
|
10865
|
+
|
|
10224
10866
|
# A physical table type built from the results of the custom SQL query.
|
|
10225
10867
|
#
|
|
10226
10868
|
# @!attribute [rw] data_source_arn
|
|
@@ -13932,6 +14574,35 @@ module Aws::QuickSight
|
|
|
13932
14574
|
include Aws::Structure
|
|
13933
14575
|
end
|
|
13934
14576
|
|
|
14577
|
+
# @!attribute [rw] agent_id
|
|
14578
|
+
# The unique identifier for the agent to delete.
|
|
14579
|
+
# @return [String]
|
|
14580
|
+
#
|
|
14581
|
+
# @!attribute [rw] aws_account_id
|
|
14582
|
+
# The ID of the Amazon Web Services account that contains the agent.
|
|
14583
|
+
# @return [String]
|
|
14584
|
+
#
|
|
14585
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteAgentRequest AWS API Documentation
|
|
14586
|
+
#
|
|
14587
|
+
class DeleteAgentRequest < Struct.new(
|
|
14588
|
+
:agent_id,
|
|
14589
|
+
:aws_account_id)
|
|
14590
|
+
SENSITIVE = []
|
|
14591
|
+
include Aws::Structure
|
|
14592
|
+
end
|
|
14593
|
+
|
|
14594
|
+
# @!attribute [rw] request_id
|
|
14595
|
+
# The Amazon Web Services request ID for this operation.
|
|
14596
|
+
# @return [String]
|
|
14597
|
+
#
|
|
14598
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteAgentResponse AWS API Documentation
|
|
14599
|
+
#
|
|
14600
|
+
class DeleteAgentResponse < Struct.new(
|
|
14601
|
+
:request_id)
|
|
14602
|
+
SENSITIVE = []
|
|
14603
|
+
include Aws::Structure
|
|
14604
|
+
end
|
|
14605
|
+
|
|
13935
14606
|
# @!attribute [rw] aws_account_id
|
|
13936
14607
|
# The ID of the Amazon Web Services account where you want to delete
|
|
13937
14608
|
# an analysis.
|
|
@@ -14309,6 +14980,41 @@ module Aws::QuickSight
|
|
|
14309
14980
|
include Aws::Structure
|
|
14310
14981
|
end
|
|
14311
14982
|
|
|
14983
|
+
# @!attribute [rw] aws_account_id
|
|
14984
|
+
# The ID of the Amazon Web Services account that contains the flow
|
|
14985
|
+
# that you are deleting.
|
|
14986
|
+
# @return [String]
|
|
14987
|
+
#
|
|
14988
|
+
# @!attribute [rw] flow_id
|
|
14989
|
+
# The unique identifier of the flow to delete.
|
|
14990
|
+
# @return [String]
|
|
14991
|
+
#
|
|
14992
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteFlowRequest AWS API Documentation
|
|
14993
|
+
#
|
|
14994
|
+
class DeleteFlowRequest < Struct.new(
|
|
14995
|
+
:aws_account_id,
|
|
14996
|
+
:flow_id)
|
|
14997
|
+
SENSITIVE = []
|
|
14998
|
+
include Aws::Structure
|
|
14999
|
+
end
|
|
15000
|
+
|
|
15001
|
+
# @!attribute [rw] request_id
|
|
15002
|
+
# The Amazon Web Services request ID for this operation.
|
|
15003
|
+
# @return [String]
|
|
15004
|
+
#
|
|
15005
|
+
# @!attribute [rw] status
|
|
15006
|
+
# The HTTP status of the request.
|
|
15007
|
+
# @return [Integer]
|
|
15008
|
+
#
|
|
15009
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteFlowResponse AWS API Documentation
|
|
15010
|
+
#
|
|
15011
|
+
class DeleteFlowResponse < Struct.new(
|
|
15012
|
+
:request_id,
|
|
15013
|
+
:status)
|
|
15014
|
+
SENSITIVE = []
|
|
15015
|
+
include Aws::Structure
|
|
15016
|
+
end
|
|
15017
|
+
|
|
14312
15018
|
# @!attribute [rw] aws_account_id
|
|
14313
15019
|
# The ID for the Amazon Web Services account that contains the folder.
|
|
14314
15020
|
# @return [String]
|
|
@@ -14601,6 +15307,52 @@ module Aws::QuickSight
|
|
|
14601
15307
|
include Aws::Structure
|
|
14602
15308
|
end
|
|
14603
15309
|
|
|
15310
|
+
# @!attribute [rw] aws_account_id
|
|
15311
|
+
# The Amazon Web Services account ID.
|
|
15312
|
+
# @return [String]
|
|
15313
|
+
#
|
|
15314
|
+
# @!attribute [rw] o_auth_client_application_id
|
|
15315
|
+
# The ID of the OAuthClientApplication that you want to delete.
|
|
15316
|
+
# @return [String]
|
|
15317
|
+
#
|
|
15318
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteOAuthClientApplicationRequest AWS API Documentation
|
|
15319
|
+
#
|
|
15320
|
+
class DeleteOAuthClientApplicationRequest < Struct.new(
|
|
15321
|
+
:aws_account_id,
|
|
15322
|
+
:o_auth_client_application_id)
|
|
15323
|
+
SENSITIVE = []
|
|
15324
|
+
include Aws::Structure
|
|
15325
|
+
end
|
|
15326
|
+
|
|
15327
|
+
# @!attribute [rw] arn
|
|
15328
|
+
# The Amazon Resource Name (ARN) of the OAuthClientApplication that
|
|
15329
|
+
# you deleted.
|
|
15330
|
+
# @return [String]
|
|
15331
|
+
#
|
|
15332
|
+
# @!attribute [rw] o_auth_client_application_id
|
|
15333
|
+
# The ID of the OAuthClientApplication. This ID is unique per Amazon
|
|
15334
|
+
# Web Services Region for each Amazon Web Services account.
|
|
15335
|
+
# @return [String]
|
|
15336
|
+
#
|
|
15337
|
+
# @!attribute [rw] request_id
|
|
15338
|
+
# The Amazon Web Services request ID for this operation.
|
|
15339
|
+
# @return [String]
|
|
15340
|
+
#
|
|
15341
|
+
# @!attribute [rw] status
|
|
15342
|
+
# The HTTP status of the request.
|
|
15343
|
+
# @return [Integer]
|
|
15344
|
+
#
|
|
15345
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteOAuthClientApplicationResponse AWS API Documentation
|
|
15346
|
+
#
|
|
15347
|
+
class DeleteOAuthClientApplicationResponse < Struct.new(
|
|
15348
|
+
:arn,
|
|
15349
|
+
:o_auth_client_application_id,
|
|
15350
|
+
:request_id,
|
|
15351
|
+
:status)
|
|
15352
|
+
SENSITIVE = []
|
|
15353
|
+
include Aws::Structure
|
|
15354
|
+
end
|
|
15355
|
+
|
|
14604
15356
|
# @!attribute [rw] data_set_id
|
|
14605
15357
|
# The ID of the dataset.
|
|
14606
15358
|
# @return [String]
|
|
@@ -14738,6 +15490,45 @@ module Aws::QuickSight
|
|
|
14738
15490
|
include Aws::Structure
|
|
14739
15491
|
end
|
|
14740
15492
|
|
|
15493
|
+
# @!attribute [rw] aws_account_id
|
|
15494
|
+
# The ID of the Amazon Web Services account that contains the space.
|
|
15495
|
+
# @return [String]
|
|
15496
|
+
#
|
|
15497
|
+
# @!attribute [rw] space_id
|
|
15498
|
+
# The ID of the space that you want to delete.
|
|
15499
|
+
# @return [String]
|
|
15500
|
+
#
|
|
15501
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteSpaceRequest AWS API Documentation
|
|
15502
|
+
#
|
|
15503
|
+
class DeleteSpaceRequest < Struct.new(
|
|
15504
|
+
:aws_account_id,
|
|
15505
|
+
:space_id)
|
|
15506
|
+
SENSITIVE = []
|
|
15507
|
+
include Aws::Structure
|
|
15508
|
+
end
|
|
15509
|
+
|
|
15510
|
+
# @!attribute [rw] space_id
|
|
15511
|
+
# The ID of the space.
|
|
15512
|
+
# @return [String]
|
|
15513
|
+
#
|
|
15514
|
+
# @!attribute [rw] space_arn
|
|
15515
|
+
# The ARN of the space.
|
|
15516
|
+
# @return [String]
|
|
15517
|
+
#
|
|
15518
|
+
# @!attribute [rw] request_id
|
|
15519
|
+
# The Amazon Web Services request ID for this operation.
|
|
15520
|
+
# @return [String]
|
|
15521
|
+
#
|
|
15522
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DeleteSpaceResponse AWS API Documentation
|
|
15523
|
+
#
|
|
15524
|
+
class DeleteSpaceResponse < Struct.new(
|
|
15525
|
+
:space_id,
|
|
15526
|
+
:space_arn,
|
|
15527
|
+
:request_id)
|
|
15528
|
+
SENSITIVE = []
|
|
15529
|
+
include Aws::Structure
|
|
15530
|
+
end
|
|
15531
|
+
|
|
14741
15532
|
# @!attribute [rw] aws_account_id
|
|
14742
15533
|
# The ID of the Amazon Web Services account that contains the item to
|
|
14743
15534
|
# delete.
|
|
@@ -15528,6 +16319,85 @@ module Aws::QuickSight
|
|
|
15528
16319
|
include Aws::Structure
|
|
15529
16320
|
end
|
|
15530
16321
|
|
|
16322
|
+
# @!attribute [rw] agent_id
|
|
16323
|
+
# The unique identifier for the agent.
|
|
16324
|
+
# @return [String]
|
|
16325
|
+
#
|
|
16326
|
+
# @!attribute [rw] aws_account_id
|
|
16327
|
+
# The ID of the Amazon Web Services account that contains the agent.
|
|
16328
|
+
# @return [String]
|
|
16329
|
+
#
|
|
16330
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeAgentPermissionsRequest AWS API Documentation
|
|
16331
|
+
#
|
|
16332
|
+
class DescribeAgentPermissionsRequest < Struct.new(
|
|
16333
|
+
:agent_id,
|
|
16334
|
+
:aws_account_id)
|
|
16335
|
+
SENSITIVE = []
|
|
16336
|
+
include Aws::Structure
|
|
16337
|
+
end
|
|
16338
|
+
|
|
16339
|
+
# @!attribute [rw] arn
|
|
16340
|
+
# The Amazon Resource Name (ARN) of the agent.
|
|
16341
|
+
# @return [String]
|
|
16342
|
+
#
|
|
16343
|
+
# @!attribute [rw] agent_id
|
|
16344
|
+
# The unique identifier for the agent.
|
|
16345
|
+
# @return [String]
|
|
16346
|
+
#
|
|
16347
|
+
# @!attribute [rw] permissions
|
|
16348
|
+
# The resource permissions for the agent.
|
|
16349
|
+
# @return [Array<Types::ResourcePermission>]
|
|
16350
|
+
#
|
|
16351
|
+
# @!attribute [rw] request_id
|
|
16352
|
+
# The Amazon Web Services request ID for this operation.
|
|
16353
|
+
# @return [String]
|
|
16354
|
+
#
|
|
16355
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeAgentPermissionsResponse AWS API Documentation
|
|
16356
|
+
#
|
|
16357
|
+
class DescribeAgentPermissionsResponse < Struct.new(
|
|
16358
|
+
:arn,
|
|
16359
|
+
:agent_id,
|
|
16360
|
+
:permissions,
|
|
16361
|
+
:request_id)
|
|
16362
|
+
SENSITIVE = []
|
|
16363
|
+
include Aws::Structure
|
|
16364
|
+
end
|
|
16365
|
+
|
|
16366
|
+
# @!attribute [rw] agent_id
|
|
16367
|
+
# The unique identifier for the agent.
|
|
16368
|
+
# @return [String]
|
|
16369
|
+
#
|
|
16370
|
+
# @!attribute [rw] aws_account_id
|
|
16371
|
+
# The ID of the Amazon Web Services account that contains the agent.
|
|
16372
|
+
# @return [String]
|
|
16373
|
+
#
|
|
16374
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeAgentRequest AWS API Documentation
|
|
16375
|
+
#
|
|
16376
|
+
class DescribeAgentRequest < Struct.new(
|
|
16377
|
+
:agent_id,
|
|
16378
|
+
:aws_account_id)
|
|
16379
|
+
SENSITIVE = []
|
|
16380
|
+
include Aws::Structure
|
|
16381
|
+
end
|
|
16382
|
+
|
|
16383
|
+
# @!attribute [rw] agent
|
|
16384
|
+
# The full details of the agent, including its configuration, status,
|
|
16385
|
+
# and associations.
|
|
16386
|
+
# @return [Types::Agent]
|
|
16387
|
+
#
|
|
16388
|
+
# @!attribute [rw] request_id
|
|
16389
|
+
# The Amazon Web Services request ID for this operation.
|
|
16390
|
+
# @return [String]
|
|
16391
|
+
#
|
|
16392
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeAgentResponse AWS API Documentation
|
|
16393
|
+
#
|
|
16394
|
+
class DescribeAgentResponse < Struct.new(
|
|
16395
|
+
:agent,
|
|
16396
|
+
:request_id)
|
|
16397
|
+
SENSITIVE = []
|
|
16398
|
+
include Aws::Structure
|
|
16399
|
+
end
|
|
16400
|
+
|
|
15531
16401
|
# @!attribute [rw] aws_account_id
|
|
15532
16402
|
# The ID of the Amazon Web Services account that contains the
|
|
15533
16403
|
# analysis. You must be using the Amazon Web Services account that the
|
|
@@ -16965,6 +17835,52 @@ module Aws::QuickSight
|
|
|
16965
17835
|
include Aws::Structure
|
|
16966
17836
|
end
|
|
16967
17837
|
|
|
17838
|
+
# @!attribute [rw] aws_account_id
|
|
17839
|
+
# The ID of the Amazon Web Services account that contains the flow
|
|
17840
|
+
# that you are describing.
|
|
17841
|
+
# @return [String]
|
|
17842
|
+
#
|
|
17843
|
+
# @!attribute [rw] flow_id
|
|
17844
|
+
# The unique identifier of the flow.
|
|
17845
|
+
# @return [String]
|
|
17846
|
+
#
|
|
17847
|
+
# @!attribute [rw] publish_state
|
|
17848
|
+
# The publish state of the flow version to describe. Valid values are
|
|
17849
|
+
# `DRAFT`, `PUBLISHED`, or `PENDING_APPROVAL`.
|
|
17850
|
+
# @return [String]
|
|
17851
|
+
#
|
|
17852
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeFlowRequest AWS API Documentation
|
|
17853
|
+
#
|
|
17854
|
+
class DescribeFlowRequest < Struct.new(
|
|
17855
|
+
:aws_account_id,
|
|
17856
|
+
:flow_id,
|
|
17857
|
+
:publish_state)
|
|
17858
|
+
SENSITIVE = []
|
|
17859
|
+
include Aws::Structure
|
|
17860
|
+
end
|
|
17861
|
+
|
|
17862
|
+
# @!attribute [rw] flow
|
|
17863
|
+
# The full details of the flow.
|
|
17864
|
+
# @return [Types::FlowDetail]
|
|
17865
|
+
#
|
|
17866
|
+
# @!attribute [rw] request_id
|
|
17867
|
+
# The Amazon Web Services request ID for this operation.
|
|
17868
|
+
# @return [String]
|
|
17869
|
+
#
|
|
17870
|
+
# @!attribute [rw] status
|
|
17871
|
+
# The HTTP status of the request.
|
|
17872
|
+
# @return [Integer]
|
|
17873
|
+
#
|
|
17874
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeFlowResponse AWS API Documentation
|
|
17875
|
+
#
|
|
17876
|
+
class DescribeFlowResponse < Struct.new(
|
|
17877
|
+
:flow,
|
|
17878
|
+
:request_id,
|
|
17879
|
+
:status)
|
|
17880
|
+
SENSITIVE = []
|
|
17881
|
+
include Aws::Structure
|
|
17882
|
+
end
|
|
17883
|
+
|
|
16968
17884
|
# @!attribute [rw] aws_account_id
|
|
16969
17885
|
# The ID for the Amazon Web Services account that contains the folder.
|
|
16970
17886
|
# @return [String]
|
|
@@ -17484,6 +18400,45 @@ module Aws::QuickSight
|
|
|
17484
18400
|
include Aws::Structure
|
|
17485
18401
|
end
|
|
17486
18402
|
|
|
18403
|
+
# @!attribute [rw] aws_account_id
|
|
18404
|
+
# The Amazon Web Services account ID.
|
|
18405
|
+
# @return [String]
|
|
18406
|
+
#
|
|
18407
|
+
# @!attribute [rw] o_auth_client_application_id
|
|
18408
|
+
# The ID of the OAuthClientApplication that you want to describe.
|
|
18409
|
+
# @return [String]
|
|
18410
|
+
#
|
|
18411
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeOAuthClientApplicationRequest AWS API Documentation
|
|
18412
|
+
#
|
|
18413
|
+
class DescribeOAuthClientApplicationRequest < Struct.new(
|
|
18414
|
+
:aws_account_id,
|
|
18415
|
+
:o_auth_client_application_id)
|
|
18416
|
+
SENSITIVE = []
|
|
18417
|
+
include Aws::Structure
|
|
18418
|
+
end
|
|
18419
|
+
|
|
18420
|
+
# @!attribute [rw] o_auth_client_application
|
|
18421
|
+
# The information about the OAuthClientApplication.
|
|
18422
|
+
# @return [Types::OAuthClientApplication]
|
|
18423
|
+
#
|
|
18424
|
+
# @!attribute [rw] request_id
|
|
18425
|
+
# The Amazon Web Services request ID for this operation.
|
|
18426
|
+
# @return [String]
|
|
18427
|
+
#
|
|
18428
|
+
# @!attribute [rw] status
|
|
18429
|
+
# The HTTP status of the request.
|
|
18430
|
+
# @return [Integer]
|
|
18431
|
+
#
|
|
18432
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeOAuthClientApplicationResponse AWS API Documentation
|
|
18433
|
+
#
|
|
18434
|
+
class DescribeOAuthClientApplicationResponse < Struct.new(
|
|
18435
|
+
:o_auth_client_application,
|
|
18436
|
+
:request_id,
|
|
18437
|
+
:status)
|
|
18438
|
+
SENSITIVE = []
|
|
18439
|
+
include Aws::Structure
|
|
18440
|
+
end
|
|
18441
|
+
|
|
17487
18442
|
# @!attribute [rw] aws_account_id
|
|
17488
18443
|
# The ID of the Amazon Web Services account that contains the
|
|
17489
18444
|
# personalization configuration that the user wants described.
|
|
@@ -17691,6 +18646,104 @@ module Aws::QuickSight
|
|
|
17691
18646
|
include Aws::Structure
|
|
17692
18647
|
end
|
|
17693
18648
|
|
|
18649
|
+
# @!attribute [rw] aws_account_id
|
|
18650
|
+
# The ID of the Amazon Web Services account that contains the space.
|
|
18651
|
+
# @return [String]
|
|
18652
|
+
#
|
|
18653
|
+
# @!attribute [rw] space_id
|
|
18654
|
+
# The ID of the space that you want to describe permissions for.
|
|
18655
|
+
# @return [String]
|
|
18656
|
+
#
|
|
18657
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeSpacePermissionsRequest AWS API Documentation
|
|
18658
|
+
#
|
|
18659
|
+
class DescribeSpacePermissionsRequest < Struct.new(
|
|
18660
|
+
:aws_account_id,
|
|
18661
|
+
:space_id)
|
|
18662
|
+
SENSITIVE = []
|
|
18663
|
+
include Aws::Structure
|
|
18664
|
+
end
|
|
18665
|
+
|
|
18666
|
+
# @!attribute [rw] space_id
|
|
18667
|
+
# The ID of the space.
|
|
18668
|
+
# @return [String]
|
|
18669
|
+
#
|
|
18670
|
+
# @!attribute [rw] space_arn
|
|
18671
|
+
# The ARN of the space.
|
|
18672
|
+
# @return [String]
|
|
18673
|
+
#
|
|
18674
|
+
# @!attribute [rw] permissions
|
|
18675
|
+
# A list of resource permissions for the space.
|
|
18676
|
+
# @return [Array<Types::ResourcePermission>]
|
|
18677
|
+
#
|
|
18678
|
+
# @!attribute [rw] request_id
|
|
18679
|
+
# The Amazon Web Services request ID for this operation.
|
|
18680
|
+
# @return [String]
|
|
18681
|
+
#
|
|
18682
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeSpacePermissionsResponse AWS API Documentation
|
|
18683
|
+
#
|
|
18684
|
+
class DescribeSpacePermissionsResponse < Struct.new(
|
|
18685
|
+
:space_id,
|
|
18686
|
+
:space_arn,
|
|
18687
|
+
:permissions,
|
|
18688
|
+
:request_id)
|
|
18689
|
+
SENSITIVE = []
|
|
18690
|
+
include Aws::Structure
|
|
18691
|
+
end
|
|
18692
|
+
|
|
18693
|
+
# @!attribute [rw] aws_account_id
|
|
18694
|
+
# The ID of the Amazon Web Services account that contains the space.
|
|
18695
|
+
# @return [String]
|
|
18696
|
+
#
|
|
18697
|
+
# @!attribute [rw] space_id
|
|
18698
|
+
# The ID of the space that you want to describe.
|
|
18699
|
+
# @return [String]
|
|
18700
|
+
#
|
|
18701
|
+
# @!attribute [rw] max_contributors
|
|
18702
|
+
# The maximum number of contributors to include in the response.
|
|
18703
|
+
# @return [Integer]
|
|
18704
|
+
#
|
|
18705
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeSpaceRequest AWS API Documentation
|
|
18706
|
+
#
|
|
18707
|
+
class DescribeSpaceRequest < Struct.new(
|
|
18708
|
+
:aws_account_id,
|
|
18709
|
+
:space_id,
|
|
18710
|
+
:max_contributors)
|
|
18711
|
+
SENSITIVE = []
|
|
18712
|
+
include Aws::Structure
|
|
18713
|
+
end
|
|
18714
|
+
|
|
18715
|
+
# @!attribute [rw] space_id
|
|
18716
|
+
# The ID of the space.
|
|
18717
|
+
# @return [String]
|
|
18718
|
+
#
|
|
18719
|
+
# @!attribute [rw] space_arn
|
|
18720
|
+
# The ARN of the space.
|
|
18721
|
+
# @return [String]
|
|
18722
|
+
#
|
|
18723
|
+
# @!attribute [rw] space
|
|
18724
|
+
# The details of the space.
|
|
18725
|
+
# @return [Types::SpaceDetails]
|
|
18726
|
+
#
|
|
18727
|
+
# @!attribute [rw] contributors
|
|
18728
|
+
# A list of contributors to the space.
|
|
18729
|
+
# @return [Array<Types::SpaceContributor>]
|
|
18730
|
+
#
|
|
18731
|
+
# @!attribute [rw] request_id
|
|
18732
|
+
# The Amazon Web Services request ID for this operation.
|
|
18733
|
+
# @return [String]
|
|
18734
|
+
#
|
|
18735
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/DescribeSpaceResponse AWS API Documentation
|
|
18736
|
+
#
|
|
18737
|
+
class DescribeSpaceResponse < Struct.new(
|
|
18738
|
+
:space_id,
|
|
18739
|
+
:space_arn,
|
|
18740
|
+
:space,
|
|
18741
|
+
:contributors,
|
|
18742
|
+
:request_id)
|
|
18743
|
+
SENSITIVE = []
|
|
18744
|
+
include Aws::Structure
|
|
18745
|
+
end
|
|
18746
|
+
|
|
17694
18747
|
# @!attribute [rw] aws_account_id
|
|
17695
18748
|
# The ID of the Amazon Web Services account that contains the template
|
|
17696
18749
|
# alias that you're describing.
|
|
@@ -18964,6 +20017,54 @@ module Aws::QuickSight
|
|
|
18964
20017
|
include Aws::Structure
|
|
18965
20018
|
end
|
|
18966
20019
|
|
|
20020
|
+
# A resource operation that failed.
|
|
20021
|
+
#
|
|
20022
|
+
# @!attribute [rw] resource_type
|
|
20023
|
+
# The type of the resource.
|
|
20024
|
+
# @return [String]
|
|
20025
|
+
#
|
|
20026
|
+
# @!attribute [rw] resource_details
|
|
20027
|
+
# The details of the resource.
|
|
20028
|
+
# @return [Types::SpaceQuickSightResourceDetails]
|
|
20029
|
+
#
|
|
20030
|
+
# @!attribute [rw] error_message
|
|
20031
|
+
# The error message that describes why the operation failed.
|
|
20032
|
+
# @return [String]
|
|
20033
|
+
#
|
|
20034
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FailedSpaceResourceOperation AWS API Documentation
|
|
20035
|
+
#
|
|
20036
|
+
class FailedSpaceResourceOperation < Struct.new(
|
|
20037
|
+
:resource_type,
|
|
20038
|
+
:resource_details,
|
|
20039
|
+
:error_message)
|
|
20040
|
+
SENSITIVE = []
|
|
20041
|
+
include Aws::Structure
|
|
20042
|
+
end
|
|
20043
|
+
|
|
20044
|
+
# Information about a per-ARN failure when updating agent associations.
|
|
20045
|
+
#
|
|
20046
|
+
# @!attribute [rw] arn
|
|
20047
|
+
# The ARN that could not be added or removed.
|
|
20048
|
+
# @return [String]
|
|
20049
|
+
#
|
|
20050
|
+
# @!attribute [rw] error_message
|
|
20051
|
+
# A description of the failure.
|
|
20052
|
+
# @return [String]
|
|
20053
|
+
#
|
|
20054
|
+
# @!attribute [rw] error_code
|
|
20055
|
+
# The error code for the failure.
|
|
20056
|
+
# @return [String]
|
|
20057
|
+
#
|
|
20058
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FailedToUpdateAssociation AWS API Documentation
|
|
20059
|
+
#
|
|
20060
|
+
class FailedToUpdateAssociation < Struct.new(
|
|
20061
|
+
:arn,
|
|
20062
|
+
:error_message,
|
|
20063
|
+
:error_code)
|
|
20064
|
+
SENSITIVE = []
|
|
20065
|
+
include Aws::Structure
|
|
20066
|
+
end
|
|
20067
|
+
|
|
18967
20068
|
# The field series item configuration of a `BarChartVisual`.
|
|
18968
20069
|
#
|
|
18969
20070
|
# @!attribute [rw] field_id
|
|
@@ -20166,6 +21267,74 @@ module Aws::QuickSight
|
|
|
20166
21267
|
include Aws::Structure
|
|
20167
21268
|
end
|
|
20168
21269
|
|
|
21270
|
+
# The full details of a flow, including its definition specifying the
|
|
21271
|
+
# steps.
|
|
21272
|
+
#
|
|
21273
|
+
# @!attribute [rw] arn
|
|
21274
|
+
# The Amazon Resource Name (ARN) of the flow.
|
|
21275
|
+
# @return [String]
|
|
21276
|
+
#
|
|
21277
|
+
# @!attribute [rw] flow_id
|
|
21278
|
+
# The unique identifier of the flow.
|
|
21279
|
+
# @return [String]
|
|
21280
|
+
#
|
|
21281
|
+
# @!attribute [rw] name
|
|
21282
|
+
# The display name of the flow.
|
|
21283
|
+
# @return [String]
|
|
21284
|
+
#
|
|
21285
|
+
# @!attribute [rw] description
|
|
21286
|
+
# The description of the flow.
|
|
21287
|
+
# @return [String]
|
|
21288
|
+
#
|
|
21289
|
+
# @!attribute [rw] publish_state
|
|
21290
|
+
# The publish state of the flow. Valid values are `DRAFT`,
|
|
21291
|
+
# `PUBLISHED`, or `PENDING_APPROVAL`.
|
|
21292
|
+
# @return [String]
|
|
21293
|
+
#
|
|
21294
|
+
# @!attribute [rw] created_time
|
|
21295
|
+
# The time this flow was created.
|
|
21296
|
+
# @return [Time]
|
|
21297
|
+
#
|
|
21298
|
+
# @!attribute [rw] created_by
|
|
21299
|
+
# The identifier of the principal who created the flow.
|
|
21300
|
+
# @return [String]
|
|
21301
|
+
#
|
|
21302
|
+
# @!attribute [rw] last_updated_time
|
|
21303
|
+
# The last time this flow was modified.
|
|
21304
|
+
# @return [Time]
|
|
21305
|
+
#
|
|
21306
|
+
# @!attribute [rw] last_updated_by
|
|
21307
|
+
# The identifier of the last principal who updated the flow.
|
|
21308
|
+
# @return [String]
|
|
21309
|
+
#
|
|
21310
|
+
# @!attribute [rw] flow_definition
|
|
21311
|
+
# The definition of the flow, specifying the steps and configurations.
|
|
21312
|
+
# This is the flow definition in Quick Flow's internal format. The
|
|
21313
|
+
# format is subject to change.
|
|
21314
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
|
21315
|
+
#
|
|
21316
|
+
# @!attribute [rw] step_aliases
|
|
21317
|
+
# A list of step alias mappings for the flow.
|
|
21318
|
+
# @return [Array<Types::StepAliasMapping>]
|
|
21319
|
+
#
|
|
21320
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/FlowDetail AWS API Documentation
|
|
21321
|
+
#
|
|
21322
|
+
class FlowDetail < Struct.new(
|
|
21323
|
+
:arn,
|
|
21324
|
+
:flow_id,
|
|
21325
|
+
:name,
|
|
21326
|
+
:description,
|
|
21327
|
+
:publish_state,
|
|
21328
|
+
:created_time,
|
|
21329
|
+
:created_by,
|
|
21330
|
+
:last_updated_time,
|
|
21331
|
+
:last_updated_by,
|
|
21332
|
+
:flow_definition,
|
|
21333
|
+
:step_aliases)
|
|
21334
|
+
SENSITIVE = [:flow_definition]
|
|
21335
|
+
include Aws::Structure
|
|
21336
|
+
end
|
|
21337
|
+
|
|
20169
21338
|
# The basic information of the flow exluding its definition specifying
|
|
20170
21339
|
# the steps.
|
|
20171
21340
|
#
|
|
@@ -25981,6 +27150,52 @@ module Aws::QuickSight
|
|
|
25981
27150
|
include Aws::Structure
|
|
25982
27151
|
end
|
|
25983
27152
|
|
|
27153
|
+
# @!attribute [rw] aws_account_id
|
|
27154
|
+
# The ID of the Amazon Web Services account that contains the agents.
|
|
27155
|
+
# @return [String]
|
|
27156
|
+
#
|
|
27157
|
+
# @!attribute [rw] max_results
|
|
27158
|
+
# The maximum number of results to return.
|
|
27159
|
+
# @return [Integer]
|
|
27160
|
+
#
|
|
27161
|
+
# @!attribute [rw] next_token
|
|
27162
|
+
# The token for the next set of results, or null if there are no more
|
|
27163
|
+
# results.
|
|
27164
|
+
# @return [String]
|
|
27165
|
+
#
|
|
27166
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListAgentsRequest AWS API Documentation
|
|
27167
|
+
#
|
|
27168
|
+
class ListAgentsRequest < Struct.new(
|
|
27169
|
+
:aws_account_id,
|
|
27170
|
+
:max_results,
|
|
27171
|
+
:next_token)
|
|
27172
|
+
SENSITIVE = []
|
|
27173
|
+
include Aws::Structure
|
|
27174
|
+
end
|
|
27175
|
+
|
|
27176
|
+
# @!attribute [rw] request_id
|
|
27177
|
+
# The Amazon Web Services request ID for this operation.
|
|
27178
|
+
# @return [String]
|
|
27179
|
+
#
|
|
27180
|
+
# @!attribute [rw] agent_summaries
|
|
27181
|
+
# A list of agent summaries.
|
|
27182
|
+
# @return [Array<Types::AgentSummary>]
|
|
27183
|
+
#
|
|
27184
|
+
# @!attribute [rw] next_token
|
|
27185
|
+
# The token for the next set of results, or null if there are no more
|
|
27186
|
+
# results.
|
|
27187
|
+
# @return [String]
|
|
27188
|
+
#
|
|
27189
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListAgentsResponse AWS API Documentation
|
|
27190
|
+
#
|
|
27191
|
+
class ListAgentsResponse < Struct.new(
|
|
27192
|
+
:request_id,
|
|
27193
|
+
:agent_summaries,
|
|
27194
|
+
:next_token)
|
|
27195
|
+
SENSITIVE = []
|
|
27196
|
+
include Aws::Structure
|
|
27197
|
+
end
|
|
27198
|
+
|
|
25984
27199
|
# @!attribute [rw] aws_account_id
|
|
25985
27200
|
# The ID of the Amazon Web Services account that contains the
|
|
25986
27201
|
# analyses.
|
|
@@ -27142,6 +28357,55 @@ module Aws::QuickSight
|
|
|
27142
28357
|
include Aws::Structure
|
|
27143
28358
|
end
|
|
27144
28359
|
|
|
28360
|
+
# @!attribute [rw] aws_account_id
|
|
28361
|
+
# The Amazon Web Services account ID.
|
|
28362
|
+
# @return [String]
|
|
28363
|
+
#
|
|
28364
|
+
# @!attribute [rw] next_token
|
|
28365
|
+
# A pagination token that can be used in a subsequent request.
|
|
28366
|
+
# @return [String]
|
|
28367
|
+
#
|
|
28368
|
+
# @!attribute [rw] max_results
|
|
28369
|
+
# The maximum number of results to return.
|
|
28370
|
+
# @return [Integer]
|
|
28371
|
+
#
|
|
28372
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListOAuthClientApplicationsRequest AWS API Documentation
|
|
28373
|
+
#
|
|
28374
|
+
class ListOAuthClientApplicationsRequest < Struct.new(
|
|
28375
|
+
:aws_account_id,
|
|
28376
|
+
:next_token,
|
|
28377
|
+
:max_results)
|
|
28378
|
+
SENSITIVE = []
|
|
28379
|
+
include Aws::Structure
|
|
28380
|
+
end
|
|
28381
|
+
|
|
28382
|
+
# @!attribute [rw] o_auth_client_applications
|
|
28383
|
+
# A list of OAuthClientApplication summaries.
|
|
28384
|
+
# @return [Array<Types::OAuthClientApplicationSummary>]
|
|
28385
|
+
#
|
|
28386
|
+
# @!attribute [rw] next_token
|
|
28387
|
+
# A pagination token that can be used in a subsequent request.
|
|
28388
|
+
# @return [String]
|
|
28389
|
+
#
|
|
28390
|
+
# @!attribute [rw] request_id
|
|
28391
|
+
# The Amazon Web Services request ID for this operation.
|
|
28392
|
+
# @return [String]
|
|
28393
|
+
#
|
|
28394
|
+
# @!attribute [rw] status
|
|
28395
|
+
# The HTTP status of the request.
|
|
28396
|
+
# @return [Integer]
|
|
28397
|
+
#
|
|
28398
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListOAuthClientApplicationsResponse AWS API Documentation
|
|
28399
|
+
#
|
|
28400
|
+
class ListOAuthClientApplicationsResponse < Struct.new(
|
|
28401
|
+
:o_auth_client_applications,
|
|
28402
|
+
:next_token,
|
|
28403
|
+
:request_id,
|
|
28404
|
+
:status)
|
|
28405
|
+
SENSITIVE = []
|
|
28406
|
+
include Aws::Structure
|
|
28407
|
+
end
|
|
28408
|
+
|
|
27145
28409
|
# @!attribute [rw] aws_account_id
|
|
27146
28410
|
# The Amazon Web Services account ID.
|
|
27147
28411
|
# @return [String]
|
|
@@ -27300,6 +28564,106 @@ module Aws::QuickSight
|
|
|
27300
28564
|
include Aws::Structure
|
|
27301
28565
|
end
|
|
27302
28566
|
|
|
28567
|
+
# @!attribute [rw] aws_account_id
|
|
28568
|
+
# The ID of the Amazon Web Services account that contains the space.
|
|
28569
|
+
# @return [String]
|
|
28570
|
+
#
|
|
28571
|
+
# @!attribute [rw] space_id
|
|
28572
|
+
# The ID of the space that you want to list resources for.
|
|
28573
|
+
# @return [String]
|
|
28574
|
+
#
|
|
28575
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListSpaceResourcesRequest AWS API Documentation
|
|
28576
|
+
#
|
|
28577
|
+
class ListSpaceResourcesRequest < Struct.new(
|
|
28578
|
+
:aws_account_id,
|
|
28579
|
+
:space_id)
|
|
28580
|
+
SENSITIVE = []
|
|
28581
|
+
include Aws::Structure
|
|
28582
|
+
end
|
|
28583
|
+
|
|
28584
|
+
# @!attribute [rw] space_id
|
|
28585
|
+
# The ID of the space.
|
|
28586
|
+
# @return [String]
|
|
28587
|
+
#
|
|
28588
|
+
# @!attribute [rw] space_arn
|
|
28589
|
+
# The ARN of the space.
|
|
28590
|
+
# @return [String]
|
|
28591
|
+
#
|
|
28592
|
+
# @!attribute [rw] space_resources
|
|
28593
|
+
# A list of resource summaries in the space.
|
|
28594
|
+
# @return [Array<Types::SpaceResourceSummary>]
|
|
28595
|
+
#
|
|
28596
|
+
# @!attribute [rw] request_id
|
|
28597
|
+
# The Amazon Web Services request ID for this operation.
|
|
28598
|
+
# @return [String]
|
|
28599
|
+
#
|
|
28600
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListSpaceResourcesResponse AWS API Documentation
|
|
28601
|
+
#
|
|
28602
|
+
class ListSpaceResourcesResponse < Struct.new(
|
|
28603
|
+
:space_id,
|
|
28604
|
+
:space_arn,
|
|
28605
|
+
:space_resources,
|
|
28606
|
+
:request_id)
|
|
28607
|
+
SENSITIVE = []
|
|
28608
|
+
include Aws::Structure
|
|
28609
|
+
end
|
|
28610
|
+
|
|
28611
|
+
# @!attribute [rw] aws_account_id
|
|
28612
|
+
# The ID of the Amazon Web Services account that contains the spaces.
|
|
28613
|
+
# @return [String]
|
|
28614
|
+
#
|
|
28615
|
+
# @!attribute [rw] next_token
|
|
28616
|
+
# The token for the next set of results, or null if there are no more
|
|
28617
|
+
# results.
|
|
28618
|
+
# @return [String]
|
|
28619
|
+
#
|
|
28620
|
+
# @!attribute [rw] max_results
|
|
28621
|
+
# The maximum number of results to return.
|
|
28622
|
+
# @return [Integer]
|
|
28623
|
+
#
|
|
28624
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListSpacesRequest AWS API Documentation
|
|
28625
|
+
#
|
|
28626
|
+
class ListSpacesRequest < Struct.new(
|
|
28627
|
+
:aws_account_id,
|
|
28628
|
+
:next_token,
|
|
28629
|
+
:max_results)
|
|
28630
|
+
SENSITIVE = []
|
|
28631
|
+
include Aws::Structure
|
|
28632
|
+
end
|
|
28633
|
+
|
|
28634
|
+
# @!attribute [rw] space_id
|
|
28635
|
+
# The ID of the space.
|
|
28636
|
+
# @return [String]
|
|
28637
|
+
#
|
|
28638
|
+
# @!attribute [rw] space_arn
|
|
28639
|
+
# The ARN of the space.
|
|
28640
|
+
# @return [String]
|
|
28641
|
+
#
|
|
28642
|
+
# @!attribute [rw] space_summaries
|
|
28643
|
+
# A list of space summaries.
|
|
28644
|
+
# @return [Array<Types::SpaceSummary>]
|
|
28645
|
+
#
|
|
28646
|
+
# @!attribute [rw] next_token
|
|
28647
|
+
# The token for the next set of results, or null if there are no more
|
|
28648
|
+
# results.
|
|
28649
|
+
# @return [String]
|
|
28650
|
+
#
|
|
28651
|
+
# @!attribute [rw] request_id
|
|
28652
|
+
# The Amazon Web Services request ID for this operation.
|
|
28653
|
+
# @return [String]
|
|
28654
|
+
#
|
|
28655
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/ListSpacesResponse AWS API Documentation
|
|
28656
|
+
#
|
|
28657
|
+
class ListSpacesResponse < Struct.new(
|
|
28658
|
+
:space_id,
|
|
28659
|
+
:space_arn,
|
|
28660
|
+
:space_summaries,
|
|
28661
|
+
:next_token,
|
|
28662
|
+
:request_id)
|
|
28663
|
+
SENSITIVE = []
|
|
28664
|
+
include Aws::Structure
|
|
28665
|
+
end
|
|
28666
|
+
|
|
27303
28667
|
# @!attribute [rw] resource_arn
|
|
27304
28668
|
# The Amazon Resource Name (ARN) of the resource that you want a list
|
|
27305
28669
|
# of tags for.
|
|
@@ -29225,6 +30589,129 @@ module Aws::QuickSight
|
|
|
29225
30589
|
include Aws::Structure
|
|
29226
30590
|
end
|
|
29227
30591
|
|
|
30592
|
+
# An OAuth client application that is used to authenticate connections
|
|
30593
|
+
# to a data source through an OAuth identity provider.
|
|
30594
|
+
#
|
|
30595
|
+
# @!attribute [rw] o_auth_client_application_id
|
|
30596
|
+
# The ID of the OAuthClientApplication. This ID is unique per Amazon
|
|
30597
|
+
# Web Services Region for each Amazon Web Services account.
|
|
30598
|
+
# @return [String]
|
|
30599
|
+
#
|
|
30600
|
+
# @!attribute [rw] name
|
|
30601
|
+
# The display name of the OAuthClientApplication.
|
|
30602
|
+
# @return [String]
|
|
30603
|
+
#
|
|
30604
|
+
# @!attribute [rw] o_auth_client_authentication_type
|
|
30605
|
+
# The OAuth client authentication type used by the
|
|
30606
|
+
# OAuthClientApplication. Valid values are `TOKEN`.
|
|
30607
|
+
# @return [String]
|
|
30608
|
+
#
|
|
30609
|
+
# @!attribute [rw] o_auth_token_endpoint_url
|
|
30610
|
+
# The token endpoint URL of the identity provider that is used to
|
|
30611
|
+
# obtain access tokens.
|
|
30612
|
+
# @return [String]
|
|
30613
|
+
#
|
|
30614
|
+
# @!attribute [rw] o_auth_authorization_endpoint_url
|
|
30615
|
+
# The authorization endpoint URL of the identity provider that is used
|
|
30616
|
+
# to obtain authorization codes.
|
|
30617
|
+
# @return [String]
|
|
30618
|
+
#
|
|
30619
|
+
# @!attribute [rw] o_auth_scopes
|
|
30620
|
+
# The OAuth scopes that are requested when the OAuthClientApplication
|
|
30621
|
+
# obtains an access token from the identity provider.
|
|
30622
|
+
# @return [String]
|
|
30623
|
+
#
|
|
30624
|
+
# @!attribute [rw] data_source_type
|
|
30625
|
+
# The type of data source that the OAuthClientApplication is used
|
|
30626
|
+
# with. Valid values are `SNOWFLAKE`.
|
|
30627
|
+
# @return [String]
|
|
30628
|
+
#
|
|
30629
|
+
# @!attribute [rw] identity_provider_vpc_connection_properties
|
|
30630
|
+
# VPC connection properties.
|
|
30631
|
+
# @return [Types::VpcConnectionProperties]
|
|
30632
|
+
#
|
|
30633
|
+
# @!attribute [rw] created_time
|
|
30634
|
+
# The time that the OAuthClientApplication was created.
|
|
30635
|
+
# @return [Time]
|
|
30636
|
+
#
|
|
30637
|
+
# @!attribute [rw] last_updated_time
|
|
30638
|
+
# The time that the OAuthClientApplication was last updated.
|
|
30639
|
+
# @return [Time]
|
|
30640
|
+
#
|
|
30641
|
+
# @!attribute [rw] arn
|
|
30642
|
+
# The Amazon Resource Name (ARN) of the OAuthClientApplication.
|
|
30643
|
+
# @return [String]
|
|
30644
|
+
#
|
|
30645
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/OAuthClientApplication AWS API Documentation
|
|
30646
|
+
#
|
|
30647
|
+
class OAuthClientApplication < Struct.new(
|
|
30648
|
+
:o_auth_client_application_id,
|
|
30649
|
+
:name,
|
|
30650
|
+
:o_auth_client_authentication_type,
|
|
30651
|
+
:o_auth_token_endpoint_url,
|
|
30652
|
+
:o_auth_authorization_endpoint_url,
|
|
30653
|
+
:o_auth_scopes,
|
|
30654
|
+
:data_source_type,
|
|
30655
|
+
:identity_provider_vpc_connection_properties,
|
|
30656
|
+
:created_time,
|
|
30657
|
+
:last_updated_time,
|
|
30658
|
+
:arn)
|
|
30659
|
+
SENSITIVE = [:o_auth_token_endpoint_url, :o_auth_authorization_endpoint_url]
|
|
30660
|
+
include Aws::Structure
|
|
30661
|
+
end
|
|
30662
|
+
|
|
30663
|
+
# A summary of an OAuthClientApplication.
|
|
30664
|
+
#
|
|
30665
|
+
# @!attribute [rw] o_auth_client_application_id
|
|
30666
|
+
# The ID of the OAuthClientApplication. This ID is unique per Amazon
|
|
30667
|
+
# Web Services Region for each Amazon Web Services account.
|
|
30668
|
+
# @return [String]
|
|
30669
|
+
#
|
|
30670
|
+
# @!attribute [rw] name
|
|
30671
|
+
# The display name of the OAuthClientApplication.
|
|
30672
|
+
# @return [String]
|
|
30673
|
+
#
|
|
30674
|
+
# @!attribute [rw] o_auth_client_authentication_type
|
|
30675
|
+
# The OAuth client authentication type used by the
|
|
30676
|
+
# OAuthClientApplication. Valid values are `TOKEN`.
|
|
30677
|
+
# @return [String]
|
|
30678
|
+
#
|
|
30679
|
+
# @!attribute [rw] data_source_type
|
|
30680
|
+
# The type of data source that the OAuthClientApplication is used
|
|
30681
|
+
# with. Valid values are `SNOWFLAKE`.
|
|
30682
|
+
# @return [String]
|
|
30683
|
+
#
|
|
30684
|
+
# @!attribute [rw] identity_provider_vpc_connection_properties
|
|
30685
|
+
# VPC connection properties.
|
|
30686
|
+
# @return [Types::VpcConnectionProperties]
|
|
30687
|
+
#
|
|
30688
|
+
# @!attribute [rw] created_time
|
|
30689
|
+
# The time that the OAuthClientApplication was created.
|
|
30690
|
+
# @return [Time]
|
|
30691
|
+
#
|
|
30692
|
+
# @!attribute [rw] last_updated_time
|
|
30693
|
+
# The time that the OAuthClientApplication was last updated.
|
|
30694
|
+
# @return [Time]
|
|
30695
|
+
#
|
|
30696
|
+
# @!attribute [rw] arn
|
|
30697
|
+
# The Amazon Resource Name (ARN) of the OAuthClientApplication.
|
|
30698
|
+
# @return [String]
|
|
30699
|
+
#
|
|
30700
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/OAuthClientApplicationSummary AWS API Documentation
|
|
30701
|
+
#
|
|
30702
|
+
class OAuthClientApplicationSummary < Struct.new(
|
|
30703
|
+
:o_auth_client_application_id,
|
|
30704
|
+
:name,
|
|
30705
|
+
:o_auth_client_authentication_type,
|
|
30706
|
+
:data_source_type,
|
|
30707
|
+
:identity_provider_vpc_connection_properties,
|
|
30708
|
+
:created_time,
|
|
30709
|
+
:last_updated_time,
|
|
30710
|
+
:arn)
|
|
30711
|
+
SENSITIVE = []
|
|
30712
|
+
include Aws::Structure
|
|
30713
|
+
end
|
|
30714
|
+
|
|
29228
30715
|
# The OAuth 2.0 client credentials used for authenticating a data source
|
|
29229
30716
|
# connection. Use this structure to provide a client ID, client secret,
|
|
29230
30717
|
# and username directly instead of referencing a secret stored in Amazon
|
|
@@ -34587,6 +36074,57 @@ module Aws::QuickSight
|
|
|
34587
36074
|
include Aws::Structure
|
|
34588
36075
|
end
|
|
34589
36076
|
|
|
36077
|
+
# @!attribute [rw] aws_account_id
|
|
36078
|
+
# The ID of the Amazon Web Services account that contains the agents.
|
|
36079
|
+
# @return [String]
|
|
36080
|
+
#
|
|
36081
|
+
# @!attribute [rw] filters
|
|
36082
|
+
# The filters to apply when searching agents.
|
|
36083
|
+
# @return [Array<Types::AgentSearchFilter>]
|
|
36084
|
+
#
|
|
36085
|
+
# @!attribute [rw] max_results
|
|
36086
|
+
# The maximum number of results to return.
|
|
36087
|
+
# @return [Integer]
|
|
36088
|
+
#
|
|
36089
|
+
# @!attribute [rw] next_token
|
|
36090
|
+
# The token for the next set of results, or null if there are no more
|
|
36091
|
+
# results.
|
|
36092
|
+
# @return [String]
|
|
36093
|
+
#
|
|
36094
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SearchAgentsRequest AWS API Documentation
|
|
36095
|
+
#
|
|
36096
|
+
class SearchAgentsRequest < Struct.new(
|
|
36097
|
+
:aws_account_id,
|
|
36098
|
+
:filters,
|
|
36099
|
+
:max_results,
|
|
36100
|
+
:next_token)
|
|
36101
|
+
SENSITIVE = []
|
|
36102
|
+
include Aws::Structure
|
|
36103
|
+
end
|
|
36104
|
+
|
|
36105
|
+
# @!attribute [rw] agent_summaries
|
|
36106
|
+
# A list of agent summaries.
|
|
36107
|
+
# @return [Array<Types::AgentSummary>]
|
|
36108
|
+
#
|
|
36109
|
+
# @!attribute [rw] next_token
|
|
36110
|
+
# The token for the next set of results, or null if there are no more
|
|
36111
|
+
# results.
|
|
36112
|
+
# @return [String]
|
|
36113
|
+
#
|
|
36114
|
+
# @!attribute [rw] request_id
|
|
36115
|
+
# The Amazon Web Services request ID for this operation.
|
|
36116
|
+
# @return [String]
|
|
36117
|
+
#
|
|
36118
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SearchAgentsResponse AWS API Documentation
|
|
36119
|
+
#
|
|
36120
|
+
class SearchAgentsResponse < Struct.new(
|
|
36121
|
+
:agent_summaries,
|
|
36122
|
+
:next_token,
|
|
36123
|
+
:request_id)
|
|
36124
|
+
SENSITIVE = []
|
|
36125
|
+
include Aws::Structure
|
|
36126
|
+
end
|
|
36127
|
+
|
|
34590
36128
|
# @!attribute [rw] aws_account_id
|
|
34591
36129
|
# The ID of the Amazon Web Services account that contains the analyses
|
|
34592
36130
|
# that you're searching for.
|
|
@@ -35048,6 +36586,67 @@ module Aws::QuickSight
|
|
|
35048
36586
|
include Aws::Structure
|
|
35049
36587
|
end
|
|
35050
36588
|
|
|
36589
|
+
# @!attribute [rw] aws_account_id
|
|
36590
|
+
# The ID of the Amazon Web Services account that contains the spaces.
|
|
36591
|
+
# @return [String]
|
|
36592
|
+
#
|
|
36593
|
+
# @!attribute [rw] next_token
|
|
36594
|
+
# The token for the next set of results, or null if there are no more
|
|
36595
|
+
# results.
|
|
36596
|
+
# @return [String]
|
|
36597
|
+
#
|
|
36598
|
+
# @!attribute [rw] max_results
|
|
36599
|
+
# The maximum number of results to return.
|
|
36600
|
+
# @return [Integer]
|
|
36601
|
+
#
|
|
36602
|
+
# @!attribute [rw] filters
|
|
36603
|
+
# The filters to apply to the search.
|
|
36604
|
+
# @return [Array<Types::SpaceQuicksightSearchFilter>]
|
|
36605
|
+
#
|
|
36606
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SearchSpacesRequest AWS API Documentation
|
|
36607
|
+
#
|
|
36608
|
+
class SearchSpacesRequest < Struct.new(
|
|
36609
|
+
:aws_account_id,
|
|
36610
|
+
:next_token,
|
|
36611
|
+
:max_results,
|
|
36612
|
+
:filters)
|
|
36613
|
+
SENSITIVE = []
|
|
36614
|
+
include Aws::Structure
|
|
36615
|
+
end
|
|
36616
|
+
|
|
36617
|
+
# @!attribute [rw] space_id
|
|
36618
|
+
# The ID of the space.
|
|
36619
|
+
# @return [String]
|
|
36620
|
+
#
|
|
36621
|
+
# @!attribute [rw] space_arn
|
|
36622
|
+
# The ARN of the space.
|
|
36623
|
+
# @return [String]
|
|
36624
|
+
#
|
|
36625
|
+
# @!attribute [rw] space_summaries
|
|
36626
|
+
# A list of space summaries that match the search criteria.
|
|
36627
|
+
# @return [Array<Types::SpaceSummary>]
|
|
36628
|
+
#
|
|
36629
|
+
# @!attribute [rw] next_token
|
|
36630
|
+
# The token for the next set of results, or null if there are no more
|
|
36631
|
+
# results.
|
|
36632
|
+
# @return [String]
|
|
36633
|
+
#
|
|
36634
|
+
# @!attribute [rw] request_id
|
|
36635
|
+
# The Amazon Web Services request ID for this operation.
|
|
36636
|
+
# @return [String]
|
|
36637
|
+
#
|
|
36638
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SearchSpacesResponse AWS API Documentation
|
|
36639
|
+
#
|
|
36640
|
+
class SearchSpacesResponse < Struct.new(
|
|
36641
|
+
:space_id,
|
|
36642
|
+
:space_arn,
|
|
36643
|
+
:space_summaries,
|
|
36644
|
+
:next_token,
|
|
36645
|
+
:request_id)
|
|
36646
|
+
SENSITIVE = []
|
|
36647
|
+
include Aws::Structure
|
|
36648
|
+
end
|
|
36649
|
+
|
|
35051
36650
|
# @!attribute [rw] aws_account_id
|
|
35052
36651
|
# The ID of the Amazon Web Services account that contains the topic
|
|
35053
36652
|
# that you want to find.
|
|
@@ -36771,6 +38370,262 @@ module Aws::QuickSight
|
|
|
36771
38370
|
include Aws::Structure
|
|
36772
38371
|
end
|
|
36773
38372
|
|
|
38373
|
+
# A contributor to an Amazon QuickSight space.
|
|
38374
|
+
#
|
|
38375
|
+
# @!attribute [rw] user_name
|
|
38376
|
+
# The user name of the contributor.
|
|
38377
|
+
# @return [String]
|
|
38378
|
+
#
|
|
38379
|
+
# @!attribute [rw] raw_file_size_bytes
|
|
38380
|
+
# The raw file size in bytes contributed by the user.
|
|
38381
|
+
# @return [Integer]
|
|
38382
|
+
#
|
|
38383
|
+
# @!attribute [rw] percentage
|
|
38384
|
+
# The percentage of total contributions made by the user.
|
|
38385
|
+
# @return [Float]
|
|
38386
|
+
#
|
|
38387
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SpaceContributor AWS API Documentation
|
|
38388
|
+
#
|
|
38389
|
+
class SpaceContributor < Struct.new(
|
|
38390
|
+
:user_name,
|
|
38391
|
+
:raw_file_size_bytes,
|
|
38392
|
+
:percentage)
|
|
38393
|
+
SENSITIVE = []
|
|
38394
|
+
include Aws::Structure
|
|
38395
|
+
end
|
|
38396
|
+
|
|
38397
|
+
# The details of an Amazon QuickSight space.
|
|
38398
|
+
#
|
|
38399
|
+
# @!attribute [rw] name
|
|
38400
|
+
# The display name of the space.
|
|
38401
|
+
# @return [String]
|
|
38402
|
+
#
|
|
38403
|
+
# @!attribute [rw] description
|
|
38404
|
+
# The description of the space.
|
|
38405
|
+
# @return [String]
|
|
38406
|
+
#
|
|
38407
|
+
# @!attribute [rw] resources
|
|
38408
|
+
# The resources in the space.
|
|
38409
|
+
# @return [Array<Types::SpaceQuickSightResource>]
|
|
38410
|
+
#
|
|
38411
|
+
# @!attribute [rw] created_at
|
|
38412
|
+
# The date and time that the space was created.
|
|
38413
|
+
# @return [Time]
|
|
38414
|
+
#
|
|
38415
|
+
# @!attribute [rw] updated_at
|
|
38416
|
+
# The date and time that the space was last updated.
|
|
38417
|
+
# @return [Time]
|
|
38418
|
+
#
|
|
38419
|
+
# @!attribute [rw] consumed_source_size
|
|
38420
|
+
# The total consumed source size in bytes.
|
|
38421
|
+
# @return [Integer]
|
|
38422
|
+
#
|
|
38423
|
+
# @!attribute [rw] consumed_source_doc_count
|
|
38424
|
+
# The number of consumed source documents.
|
|
38425
|
+
# @return [Integer]
|
|
38426
|
+
#
|
|
38427
|
+
# @!attribute [rw] created_by
|
|
38428
|
+
# The user who created the space.
|
|
38429
|
+
# @return [String]
|
|
38430
|
+
#
|
|
38431
|
+
# @!attribute [rw] created_by_arn
|
|
38432
|
+
# The ARN of the user who created the space.
|
|
38433
|
+
# @return [String]
|
|
38434
|
+
#
|
|
38435
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SpaceDetails AWS API Documentation
|
|
38436
|
+
#
|
|
38437
|
+
class SpaceDetails < Struct.new(
|
|
38438
|
+
:name,
|
|
38439
|
+
:description,
|
|
38440
|
+
:resources,
|
|
38441
|
+
:created_at,
|
|
38442
|
+
:updated_at,
|
|
38443
|
+
:consumed_source_size,
|
|
38444
|
+
:consumed_source_doc_count,
|
|
38445
|
+
:created_by,
|
|
38446
|
+
:created_by_arn)
|
|
38447
|
+
SENSITIVE = [:description]
|
|
38448
|
+
include Aws::Structure
|
|
38449
|
+
end
|
|
38450
|
+
|
|
38451
|
+
# A QuickSight resource that is associated with a space.
|
|
38452
|
+
#
|
|
38453
|
+
# @!attribute [rw] resource_type
|
|
38454
|
+
# The type of the QuickSight resource.
|
|
38455
|
+
# @return [String]
|
|
38456
|
+
#
|
|
38457
|
+
# @!attribute [rw] resource_details
|
|
38458
|
+
# The details of the QuickSight resource.
|
|
38459
|
+
# @return [Types::SpaceQuickSightResourceDetails]
|
|
38460
|
+
#
|
|
38461
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SpaceQuickSightResource AWS API Documentation
|
|
38462
|
+
#
|
|
38463
|
+
class SpaceQuickSightResource < Struct.new(
|
|
38464
|
+
:resource_type,
|
|
38465
|
+
:resource_details)
|
|
38466
|
+
SENSITIVE = []
|
|
38467
|
+
include Aws::Structure
|
|
38468
|
+
end
|
|
38469
|
+
|
|
38470
|
+
# The details of a QuickSight resource in a space.
|
|
38471
|
+
#
|
|
38472
|
+
# @note SpaceQuickSightResourceDetails is a union - when making an API calls you must set exactly one of the members.
|
|
38473
|
+
#
|
|
38474
|
+
# @note SpaceQuickSightResourceDetails is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of SpaceQuickSightResourceDetails corresponding to the set member.
|
|
38475
|
+
#
|
|
38476
|
+
# @!attribute [rw] resource_arn
|
|
38477
|
+
# The ARN of the QuickSight resource.
|
|
38478
|
+
# @return [String]
|
|
38479
|
+
#
|
|
38480
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SpaceQuickSightResourceDetails AWS API Documentation
|
|
38481
|
+
#
|
|
38482
|
+
class SpaceQuickSightResourceDetails < Struct.new(
|
|
38483
|
+
:resource_arn,
|
|
38484
|
+
:unknown)
|
|
38485
|
+
SENSITIVE = []
|
|
38486
|
+
include Aws::Structure
|
|
38487
|
+
include Aws::Structure::Union
|
|
38488
|
+
|
|
38489
|
+
class ResourceArn < SpaceQuickSightResourceDetails; end
|
|
38490
|
+
class Unknown < SpaceQuickSightResourceDetails; end
|
|
38491
|
+
end
|
|
38492
|
+
|
|
38493
|
+
# A filter to use when searching for spaces.
|
|
38494
|
+
#
|
|
38495
|
+
# @!attribute [rw] name
|
|
38496
|
+
# The name of the filter field to use.
|
|
38497
|
+
# @return [String]
|
|
38498
|
+
#
|
|
38499
|
+
# @!attribute [rw] operator
|
|
38500
|
+
# The comparison operator to use for the filter.
|
|
38501
|
+
# @return [String]
|
|
38502
|
+
#
|
|
38503
|
+
# @!attribute [rw] value
|
|
38504
|
+
# The value to use for the filter.
|
|
38505
|
+
# @return [String]
|
|
38506
|
+
#
|
|
38507
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SpaceQuicksightSearchFilter AWS API Documentation
|
|
38508
|
+
#
|
|
38509
|
+
class SpaceQuicksightSearchFilter < Struct.new(
|
|
38510
|
+
:name,
|
|
38511
|
+
:operator,
|
|
38512
|
+
:value)
|
|
38513
|
+
SENSITIVE = []
|
|
38514
|
+
include Aws::Structure
|
|
38515
|
+
end
|
|
38516
|
+
|
|
38517
|
+
# An operation to perform on a resource in a space.
|
|
38518
|
+
#
|
|
38519
|
+
# @!attribute [rw] resource_type
|
|
38520
|
+
# The type of the resource.
|
|
38521
|
+
# @return [String]
|
|
38522
|
+
#
|
|
38523
|
+
# @!attribute [rw] resource_details
|
|
38524
|
+
# The details of the resource.
|
|
38525
|
+
# @return [Types::SpaceQuickSightResourceDetails]
|
|
38526
|
+
#
|
|
38527
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SpaceResourceOperation AWS API Documentation
|
|
38528
|
+
#
|
|
38529
|
+
class SpaceResourceOperation < Struct.new(
|
|
38530
|
+
:resource_type,
|
|
38531
|
+
:resource_details)
|
|
38532
|
+
SENSITIVE = []
|
|
38533
|
+
include Aws::Structure
|
|
38534
|
+
end
|
|
38535
|
+
|
|
38536
|
+
# A summary of a resource in a space.
|
|
38537
|
+
#
|
|
38538
|
+
# @!attribute [rw] resource_type
|
|
38539
|
+
# The type of the resource.
|
|
38540
|
+
# @return [String]
|
|
38541
|
+
#
|
|
38542
|
+
# @!attribute [rw] resource_details
|
|
38543
|
+
# The details of the resource.
|
|
38544
|
+
# @return [Types::SpaceQuickSightResourceDetails]
|
|
38545
|
+
#
|
|
38546
|
+
# @!attribute [rw] resource_name
|
|
38547
|
+
# The name of the resource.
|
|
38548
|
+
# @return [String]
|
|
38549
|
+
#
|
|
38550
|
+
# @!attribute [rw] updated_at
|
|
38551
|
+
# The date and time that the resource was last updated.
|
|
38552
|
+
# @return [Time]
|
|
38553
|
+
#
|
|
38554
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SpaceResourceSummary AWS API Documentation
|
|
38555
|
+
#
|
|
38556
|
+
class SpaceResourceSummary < Struct.new(
|
|
38557
|
+
:resource_type,
|
|
38558
|
+
:resource_details,
|
|
38559
|
+
:resource_name,
|
|
38560
|
+
:updated_at)
|
|
38561
|
+
SENSITIVE = []
|
|
38562
|
+
include Aws::Structure
|
|
38563
|
+
end
|
|
38564
|
+
|
|
38565
|
+
# A summary of an Amazon QuickSight space.
|
|
38566
|
+
#
|
|
38567
|
+
# @!attribute [rw] space_id
|
|
38568
|
+
# The ID of the space.
|
|
38569
|
+
# @return [String]
|
|
38570
|
+
#
|
|
38571
|
+
# @!attribute [rw] space_arn
|
|
38572
|
+
# The ARN of the space.
|
|
38573
|
+
# @return [String]
|
|
38574
|
+
#
|
|
38575
|
+
# @!attribute [rw] name
|
|
38576
|
+
# The display name of the space.
|
|
38577
|
+
# @return [String]
|
|
38578
|
+
#
|
|
38579
|
+
# @!attribute [rw] description
|
|
38580
|
+
# The description of the space.
|
|
38581
|
+
# @return [String]
|
|
38582
|
+
#
|
|
38583
|
+
# @!attribute [rw] updated_at
|
|
38584
|
+
# The date and time that the space was last updated.
|
|
38585
|
+
# @return [Time]
|
|
38586
|
+
#
|
|
38587
|
+
# @!attribute [rw] consumed_source_size
|
|
38588
|
+
# The total consumed source size in bytes.
|
|
38589
|
+
# @return [Integer]
|
|
38590
|
+
#
|
|
38591
|
+
# @!attribute [rw] consumed_source_doc_count
|
|
38592
|
+
# The number of consumed source documents.
|
|
38593
|
+
# @return [Integer]
|
|
38594
|
+
#
|
|
38595
|
+
# @!attribute [rw] created_at
|
|
38596
|
+
# The date and time that the space was created.
|
|
38597
|
+
# @return [Time]
|
|
38598
|
+
#
|
|
38599
|
+
# @!attribute [rw] created_by
|
|
38600
|
+
# The user who created the space.
|
|
38601
|
+
# @return [String]
|
|
38602
|
+
#
|
|
38603
|
+
# @!attribute [rw] created_by_arn
|
|
38604
|
+
# The ARN of the user who created the space.
|
|
38605
|
+
# @return [String]
|
|
38606
|
+
#
|
|
38607
|
+
# @!attribute [rw] resources_count
|
|
38608
|
+
# The number of resources in the space.
|
|
38609
|
+
# @return [Integer]
|
|
38610
|
+
#
|
|
38611
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/SpaceSummary AWS API Documentation
|
|
38612
|
+
#
|
|
38613
|
+
class SpaceSummary < Struct.new(
|
|
38614
|
+
:space_id,
|
|
38615
|
+
:space_arn,
|
|
38616
|
+
:name,
|
|
38617
|
+
:description,
|
|
38618
|
+
:updated_at,
|
|
38619
|
+
:consumed_source_size,
|
|
38620
|
+
:consumed_source_doc_count,
|
|
38621
|
+
:created_at,
|
|
38622
|
+
:created_by,
|
|
38623
|
+
:created_by_arn,
|
|
38624
|
+
:resources_count)
|
|
38625
|
+
SENSITIVE = [:description]
|
|
38626
|
+
include Aws::Structure
|
|
38627
|
+
end
|
|
38628
|
+
|
|
36774
38629
|
# The configuration of spacing (often a margin or padding).
|
|
36775
38630
|
#
|
|
36776
38631
|
# @!attribute [rw] top
|
|
@@ -37466,6 +39321,25 @@ module Aws::QuickSight
|
|
|
37466
39321
|
include Aws::Structure
|
|
37467
39322
|
end
|
|
37468
39323
|
|
|
39324
|
+
# A mapping between a step identifier and its alias in a flow.
|
|
39325
|
+
#
|
|
39326
|
+
# @!attribute [rw] step_id
|
|
39327
|
+
# The unique identifier of the step.
|
|
39328
|
+
# @return [String]
|
|
39329
|
+
#
|
|
39330
|
+
# @!attribute [rw] step_alias
|
|
39331
|
+
# The alias for the step.
|
|
39332
|
+
# @return [String]
|
|
39333
|
+
#
|
|
39334
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/StepAliasMapping AWS API Documentation
|
|
39335
|
+
#
|
|
39336
|
+
class StepAliasMapping < Struct.new(
|
|
39337
|
+
:step_id,
|
|
39338
|
+
:step_alias)
|
|
39339
|
+
SENSITIVE = []
|
|
39340
|
+
include Aws::Structure
|
|
39341
|
+
end
|
|
39342
|
+
|
|
37469
39343
|
# A string parameter for a dataset.
|
|
37470
39344
|
#
|
|
37471
39345
|
# @!attribute [rw] id
|
|
@@ -42221,6 +44095,184 @@ module Aws::QuickSight
|
|
|
42221
44095
|
include Aws::Structure
|
|
42222
44096
|
end
|
|
42223
44097
|
|
|
44098
|
+
# @!attribute [rw] agent_id
|
|
44099
|
+
# The unique identifier for the agent.
|
|
44100
|
+
# @return [String]
|
|
44101
|
+
#
|
|
44102
|
+
# @!attribute [rw] aws_account_id
|
|
44103
|
+
# The ID of the Amazon Web Services account that contains the agent.
|
|
44104
|
+
# @return [String]
|
|
44105
|
+
#
|
|
44106
|
+
# @!attribute [rw] grant_permissions
|
|
44107
|
+
# The resource permissions that you want to grant on the agent.
|
|
44108
|
+
# @return [Array<Types::ResourcePermission>]
|
|
44109
|
+
#
|
|
44110
|
+
# @!attribute [rw] revoke_permissions
|
|
44111
|
+
# The resource permissions that you want to revoke from the agent.
|
|
44112
|
+
# @return [Array<Types::ResourcePermission>]
|
|
44113
|
+
#
|
|
44114
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateAgentPermissionsRequest AWS API Documentation
|
|
44115
|
+
#
|
|
44116
|
+
class UpdateAgentPermissionsRequest < Struct.new(
|
|
44117
|
+
:agent_id,
|
|
44118
|
+
:aws_account_id,
|
|
44119
|
+
:grant_permissions,
|
|
44120
|
+
:revoke_permissions)
|
|
44121
|
+
SENSITIVE = []
|
|
44122
|
+
include Aws::Structure
|
|
44123
|
+
end
|
|
44124
|
+
|
|
44125
|
+
# @!attribute [rw] arn
|
|
44126
|
+
# The Amazon Resource Name (ARN) of the agent.
|
|
44127
|
+
# @return [String]
|
|
44128
|
+
#
|
|
44129
|
+
# @!attribute [rw] agent_id
|
|
44130
|
+
# The unique identifier for the agent.
|
|
44131
|
+
# @return [String]
|
|
44132
|
+
#
|
|
44133
|
+
# @!attribute [rw] request_id
|
|
44134
|
+
# The Amazon Web Services request ID for this operation.
|
|
44135
|
+
# @return [String]
|
|
44136
|
+
#
|
|
44137
|
+
# @!attribute [rw] permissions
|
|
44138
|
+
# The resource permissions for the agent.
|
|
44139
|
+
# @return [Array<Types::ResourcePermission>]
|
|
44140
|
+
#
|
|
44141
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateAgentPermissionsResponse AWS API Documentation
|
|
44142
|
+
#
|
|
44143
|
+
class UpdateAgentPermissionsResponse < Struct.new(
|
|
44144
|
+
:arn,
|
|
44145
|
+
:agent_id,
|
|
44146
|
+
:request_id,
|
|
44147
|
+
:permissions)
|
|
44148
|
+
SENSITIVE = []
|
|
44149
|
+
include Aws::Structure
|
|
44150
|
+
end
|
|
44151
|
+
|
|
44152
|
+
# @!attribute [rw] agent_id
|
|
44153
|
+
# The unique identifier for the agent to update.
|
|
44154
|
+
# @return [String]
|
|
44155
|
+
#
|
|
44156
|
+
# @!attribute [rw] aws_account_id
|
|
44157
|
+
# The ID of the Amazon Web Services account that contains the agent.
|
|
44158
|
+
# @return [String]
|
|
44159
|
+
#
|
|
44160
|
+
# @!attribute [rw] name
|
|
44161
|
+
# The name of the agent.
|
|
44162
|
+
# @return [String]
|
|
44163
|
+
#
|
|
44164
|
+
# @!attribute [rw] description
|
|
44165
|
+
# A description of the agent.
|
|
44166
|
+
# @return [String]
|
|
44167
|
+
#
|
|
44168
|
+
# @!attribute [rw] icon_id
|
|
44169
|
+
# The icon identifier for the agent.
|
|
44170
|
+
# @return [String]
|
|
44171
|
+
#
|
|
44172
|
+
# @!attribute [rw] starter_prompts
|
|
44173
|
+
# A list of starter prompts that are displayed to users when they
|
|
44174
|
+
# begin interacting with the agent.
|
|
44175
|
+
# @return [Array<String>]
|
|
44176
|
+
#
|
|
44177
|
+
# @!attribute [rw] welcome_message
|
|
44178
|
+
# The welcome message that is displayed when a user starts a
|
|
44179
|
+
# conversation with the agent.
|
|
44180
|
+
# @return [String]
|
|
44181
|
+
#
|
|
44182
|
+
# @!attribute [rw] custom_prompt_input
|
|
44183
|
+
# The custom prompt configuration for the agent.
|
|
44184
|
+
# @return [Types::CustomPromptInput]
|
|
44185
|
+
#
|
|
44186
|
+
# @!attribute [rw] spaces_to_add
|
|
44187
|
+
# The Amazon Resource Names (ARNs) of the spaces to attach to the
|
|
44188
|
+
# agent.
|
|
44189
|
+
# @return [Array<String>]
|
|
44190
|
+
#
|
|
44191
|
+
# @!attribute [rw] spaces_to_remove
|
|
44192
|
+
# The Amazon Resource Names (ARNs) of the spaces to detach from the
|
|
44193
|
+
# agent.
|
|
44194
|
+
# @return [Array<String>]
|
|
44195
|
+
#
|
|
44196
|
+
# @!attribute [rw] action_connectors_to_add
|
|
44197
|
+
# The Amazon Resource Names (ARNs) of the action connectors to attach
|
|
44198
|
+
# to the agent.
|
|
44199
|
+
# @return [Array<String>]
|
|
44200
|
+
#
|
|
44201
|
+
# @!attribute [rw] action_connectors_to_remove
|
|
44202
|
+
# The Amazon Resource Names (ARNs) of the action connectors to detach
|
|
44203
|
+
# from the agent.
|
|
44204
|
+
# @return [Array<String>]
|
|
44205
|
+
#
|
|
44206
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateAgentRequest AWS API Documentation
|
|
44207
|
+
#
|
|
44208
|
+
class UpdateAgentRequest < Struct.new(
|
|
44209
|
+
:agent_id,
|
|
44210
|
+
:aws_account_id,
|
|
44211
|
+
:name,
|
|
44212
|
+
:description,
|
|
44213
|
+
:icon_id,
|
|
44214
|
+
:starter_prompts,
|
|
44215
|
+
:welcome_message,
|
|
44216
|
+
:custom_prompt_input,
|
|
44217
|
+
:spaces_to_add,
|
|
44218
|
+
:spaces_to_remove,
|
|
44219
|
+
:action_connectors_to_add,
|
|
44220
|
+
:action_connectors_to_remove)
|
|
44221
|
+
SENSITIVE = [:starter_prompts, :welcome_message, :custom_prompt_input]
|
|
44222
|
+
include Aws::Structure
|
|
44223
|
+
end
|
|
44224
|
+
|
|
44225
|
+
# @!attribute [rw] arn
|
|
44226
|
+
# The Amazon Resource Name (ARN) of the agent.
|
|
44227
|
+
# @return [String]
|
|
44228
|
+
#
|
|
44229
|
+
# @!attribute [rw] agent_id
|
|
44230
|
+
# The unique identifier for the agent.
|
|
44231
|
+
# @return [String]
|
|
44232
|
+
#
|
|
44233
|
+
# @!attribute [rw] agent_status
|
|
44234
|
+
# The status of the agent.
|
|
44235
|
+
# @return [String]
|
|
44236
|
+
#
|
|
44237
|
+
# @!attribute [rw] failed_to_add_spaces
|
|
44238
|
+
# A list of per-ARN failures from the spaces that were requested to be
|
|
44239
|
+
# added.
|
|
44240
|
+
# @return [Array<Types::FailedToUpdateAssociation>]
|
|
44241
|
+
#
|
|
44242
|
+
# @!attribute [rw] failed_to_remove_spaces
|
|
44243
|
+
# A list of per-ARN failures from the spaces that were requested to be
|
|
44244
|
+
# removed.
|
|
44245
|
+
# @return [Array<Types::FailedToUpdateAssociation>]
|
|
44246
|
+
#
|
|
44247
|
+
# @!attribute [rw] failed_to_add_action_connectors
|
|
44248
|
+
# A list of per-ARN failures from the action connectors that were
|
|
44249
|
+
# requested to be added.
|
|
44250
|
+
# @return [Array<Types::FailedToUpdateAssociation>]
|
|
44251
|
+
#
|
|
44252
|
+
# @!attribute [rw] failed_to_remove_action_connectors
|
|
44253
|
+
# A list of per-ARN failures from the action connectors that were
|
|
44254
|
+
# requested to be removed.
|
|
44255
|
+
# @return [Array<Types::FailedToUpdateAssociation>]
|
|
44256
|
+
#
|
|
44257
|
+
# @!attribute [rw] request_id
|
|
44258
|
+
# The Amazon Web Services request ID for this operation.
|
|
44259
|
+
# @return [String]
|
|
44260
|
+
#
|
|
44261
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateAgentResponse AWS API Documentation
|
|
44262
|
+
#
|
|
44263
|
+
class UpdateAgentResponse < Struct.new(
|
|
44264
|
+
:arn,
|
|
44265
|
+
:agent_id,
|
|
44266
|
+
:agent_status,
|
|
44267
|
+
:failed_to_add_spaces,
|
|
44268
|
+
:failed_to_remove_spaces,
|
|
44269
|
+
:failed_to_add_action_connectors,
|
|
44270
|
+
:failed_to_remove_action_connectors,
|
|
44271
|
+
:request_id)
|
|
44272
|
+
SENSITIVE = []
|
|
44273
|
+
include Aws::Structure
|
|
44274
|
+
end
|
|
44275
|
+
|
|
42224
44276
|
# @!attribute [rw] aws_account_id
|
|
42225
44277
|
# The ID of the Amazon Web Services account that contains the analysis
|
|
42226
44278
|
# whose permissions you're updating. You must be using the Amazon Web
|
|
@@ -43391,6 +45443,86 @@ module Aws::QuickSight
|
|
|
43391
45443
|
include Aws::Structure
|
|
43392
45444
|
end
|
|
43393
45445
|
|
|
45446
|
+
# @!attribute [rw] aws_account_id
|
|
45447
|
+
# The ID of the Amazon Web Services account that contains the flow
|
|
45448
|
+
# that you are updating.
|
|
45449
|
+
# @return [String]
|
|
45450
|
+
#
|
|
45451
|
+
# @!attribute [rw] flow_id
|
|
45452
|
+
# The unique identifier of the flow to update.
|
|
45453
|
+
# @return [String]
|
|
45454
|
+
#
|
|
45455
|
+
# @!attribute [rw] name
|
|
45456
|
+
# Updated display name for the flow. Omit to preserve the existing
|
|
45457
|
+
# name.
|
|
45458
|
+
# @return [String]
|
|
45459
|
+
#
|
|
45460
|
+
# @!attribute [rw] description
|
|
45461
|
+
# Updated description for the flow. Omit to preserve the existing
|
|
45462
|
+
# description.
|
|
45463
|
+
# @return [String]
|
|
45464
|
+
#
|
|
45465
|
+
# @!attribute [rw] flow_definition
|
|
45466
|
+
# The definition of the flow, specifying the steps and configurations.
|
|
45467
|
+
# This is the flow definition in Quick Flow's internal format. The
|
|
45468
|
+
# format is subject to change. When provided, all existing steps are
|
|
45469
|
+
# replaced. Omit to preserve the existing definition.
|
|
45470
|
+
#
|
|
45471
|
+
# <note markdown="1"> Always derive or depend on the flow definition from the
|
|
45472
|
+
# `DescribeFlow` operation to ensure you are working with the latest
|
|
45473
|
+
# format.
|
|
45474
|
+
#
|
|
45475
|
+
# </note>
|
|
45476
|
+
# @return [Hash,Array,String,Numeric,Boolean]
|
|
45477
|
+
#
|
|
45478
|
+
# @!attribute [rw] client_token
|
|
45479
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
45480
|
+
# idempotency of the request.
|
|
45481
|
+
#
|
|
45482
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
45483
|
+
# not need to pass this option.
|
|
45484
|
+
# @return [String]
|
|
45485
|
+
#
|
|
45486
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateFlowRequest AWS API Documentation
|
|
45487
|
+
#
|
|
45488
|
+
class UpdateFlowRequest < Struct.new(
|
|
45489
|
+
:aws_account_id,
|
|
45490
|
+
:flow_id,
|
|
45491
|
+
:name,
|
|
45492
|
+
:description,
|
|
45493
|
+
:flow_definition,
|
|
45494
|
+
:client_token)
|
|
45495
|
+
SENSITIVE = [:flow_definition]
|
|
45496
|
+
include Aws::Structure
|
|
45497
|
+
end
|
|
45498
|
+
|
|
45499
|
+
# @!attribute [rw] arn
|
|
45500
|
+
# The Amazon Resource Name (ARN) of the flow.
|
|
45501
|
+
# @return [String]
|
|
45502
|
+
#
|
|
45503
|
+
# @!attribute [rw] flow_id
|
|
45504
|
+
# The unique identifier of the flow.
|
|
45505
|
+
# @return [String]
|
|
45506
|
+
#
|
|
45507
|
+
# @!attribute [rw] request_id
|
|
45508
|
+
# The Amazon Web Services request ID for this operation.
|
|
45509
|
+
# @return [String]
|
|
45510
|
+
#
|
|
45511
|
+
# @!attribute [rw] status
|
|
45512
|
+
# The HTTP status of the request.
|
|
45513
|
+
# @return [Integer]
|
|
45514
|
+
#
|
|
45515
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateFlowResponse AWS API Documentation
|
|
45516
|
+
#
|
|
45517
|
+
class UpdateFlowResponse < Struct.new(
|
|
45518
|
+
:arn,
|
|
45519
|
+
:flow_id,
|
|
45520
|
+
:request_id,
|
|
45521
|
+
:status)
|
|
45522
|
+
SENSITIVE = []
|
|
45523
|
+
include Aws::Structure
|
|
45524
|
+
end
|
|
45525
|
+
|
|
43394
45526
|
# @!attribute [rw] aws_account_id
|
|
43395
45527
|
# The ID for the Amazon Web Services account that contains the folder
|
|
43396
45528
|
# to update.
|
|
@@ -43802,6 +45934,102 @@ module Aws::QuickSight
|
|
|
43802
45934
|
include Aws::Structure
|
|
43803
45935
|
end
|
|
43804
45936
|
|
|
45937
|
+
# @!attribute [rw] aws_account_id
|
|
45938
|
+
# The Amazon Web Services account ID.
|
|
45939
|
+
# @return [String]
|
|
45940
|
+
#
|
|
45941
|
+
# @!attribute [rw] o_auth_client_application_id
|
|
45942
|
+
# The ID of the OAuthClientApplication that you want to update.
|
|
45943
|
+
# @return [String]
|
|
45944
|
+
#
|
|
45945
|
+
# @!attribute [rw] name
|
|
45946
|
+
# The display name for the OAuthClientApplication.
|
|
45947
|
+
# @return [String]
|
|
45948
|
+
#
|
|
45949
|
+
# @!attribute [rw] client_id
|
|
45950
|
+
# The client ID of the OAuth application that is registered with the
|
|
45951
|
+
# identity provider.
|
|
45952
|
+
# @return [String]
|
|
45953
|
+
#
|
|
45954
|
+
# @!attribute [rw] client_secret
|
|
45955
|
+
# The client secret of the OAuth application that is registered with
|
|
45956
|
+
# the identity provider.
|
|
45957
|
+
# @return [String]
|
|
45958
|
+
#
|
|
45959
|
+
# @!attribute [rw] o_auth_token_endpoint_url
|
|
45960
|
+
# The token endpoint URL of the identity provider that is used to
|
|
45961
|
+
# obtain access tokens.
|
|
45962
|
+
# @return [String]
|
|
45963
|
+
#
|
|
45964
|
+
# @!attribute [rw] o_auth_authorization_endpoint_url
|
|
45965
|
+
# The authorization endpoint URL of the identity provider that is used
|
|
45966
|
+
# to obtain authorization codes.
|
|
45967
|
+
# @return [String]
|
|
45968
|
+
#
|
|
45969
|
+
# @!attribute [rw] o_auth_scopes
|
|
45970
|
+
# The OAuth scopes that are requested when the OAuthClientApplication
|
|
45971
|
+
# obtains an access token from the identity provider.
|
|
45972
|
+
# @return [String]
|
|
45973
|
+
#
|
|
45974
|
+
# @!attribute [rw] data_source_type
|
|
45975
|
+
# The type of data source that the OAuthClientApplication is used
|
|
45976
|
+
# with. Valid values are `SNOWFLAKE`.
|
|
45977
|
+
# @return [String]
|
|
45978
|
+
#
|
|
45979
|
+
# @!attribute [rw] identity_provider_vpc_connection_properties
|
|
45980
|
+
# VPC connection properties.
|
|
45981
|
+
# @return [Types::VpcConnectionProperties]
|
|
45982
|
+
#
|
|
45983
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateOAuthClientApplicationRequest AWS API Documentation
|
|
45984
|
+
#
|
|
45985
|
+
class UpdateOAuthClientApplicationRequest < Struct.new(
|
|
45986
|
+
:aws_account_id,
|
|
45987
|
+
:o_auth_client_application_id,
|
|
45988
|
+
:name,
|
|
45989
|
+
:client_id,
|
|
45990
|
+
:client_secret,
|
|
45991
|
+
:o_auth_token_endpoint_url,
|
|
45992
|
+
:o_auth_authorization_endpoint_url,
|
|
45993
|
+
:o_auth_scopes,
|
|
45994
|
+
:data_source_type,
|
|
45995
|
+
:identity_provider_vpc_connection_properties)
|
|
45996
|
+
SENSITIVE = [:client_id, :client_secret, :o_auth_token_endpoint_url, :o_auth_authorization_endpoint_url]
|
|
45997
|
+
include Aws::Structure
|
|
45998
|
+
end
|
|
45999
|
+
|
|
46000
|
+
# @!attribute [rw] arn
|
|
46001
|
+
# The Amazon Resource Name (ARN) of the OAuthClientApplication.
|
|
46002
|
+
# @return [String]
|
|
46003
|
+
#
|
|
46004
|
+
# @!attribute [rw] o_auth_client_application_id
|
|
46005
|
+
# The ID of the OAuthClientApplication. This ID is unique per Amazon
|
|
46006
|
+
# Web Services Region for each Amazon Web Services account.
|
|
46007
|
+
# @return [String]
|
|
46008
|
+
#
|
|
46009
|
+
# @!attribute [rw] update_status
|
|
46010
|
+
# The status of updating the OAuthClientApplication.
|
|
46011
|
+
# @return [String]
|
|
46012
|
+
#
|
|
46013
|
+
# @!attribute [rw] request_id
|
|
46014
|
+
# The Amazon Web Services request ID for this operation.
|
|
46015
|
+
# @return [String]
|
|
46016
|
+
#
|
|
46017
|
+
# @!attribute [rw] status
|
|
46018
|
+
# The HTTP status of the request.
|
|
46019
|
+
# @return [Integer]
|
|
46020
|
+
#
|
|
46021
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateOAuthClientApplicationResponse AWS API Documentation
|
|
46022
|
+
#
|
|
46023
|
+
class UpdateOAuthClientApplicationResponse < Struct.new(
|
|
46024
|
+
:arn,
|
|
46025
|
+
:o_auth_client_application_id,
|
|
46026
|
+
:update_status,
|
|
46027
|
+
:request_id,
|
|
46028
|
+
:status)
|
|
46029
|
+
SENSITIVE = []
|
|
46030
|
+
include Aws::Structure
|
|
46031
|
+
end
|
|
46032
|
+
|
|
43805
46033
|
# @!attribute [rw] aws_account_id
|
|
43806
46034
|
# The Amazon Web Services account ID associated with your Amazon Quick
|
|
43807
46035
|
# Sight subscription.
|
|
@@ -44153,6 +46381,163 @@ module Aws::QuickSight
|
|
|
44153
46381
|
include Aws::Structure
|
|
44154
46382
|
end
|
|
44155
46383
|
|
|
46384
|
+
# @!attribute [rw] aws_account_id
|
|
46385
|
+
# The ID of the Amazon Web Services account that contains the space.
|
|
46386
|
+
# @return [String]
|
|
46387
|
+
#
|
|
46388
|
+
# @!attribute [rw] space_id
|
|
46389
|
+
# The ID of the space that you want to update permissions for.
|
|
46390
|
+
# @return [String]
|
|
46391
|
+
#
|
|
46392
|
+
# @!attribute [rw] grant_permissions
|
|
46393
|
+
# The permissions that you want to grant on the space.
|
|
46394
|
+
# @return [Array<Types::ResourcePermission>]
|
|
46395
|
+
#
|
|
46396
|
+
# @!attribute [rw] revoke_permissions
|
|
46397
|
+
# The permissions that you want to revoke from the space.
|
|
46398
|
+
# @return [Array<Types::ResourcePermission>]
|
|
46399
|
+
#
|
|
46400
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateSpacePermissionsRequest AWS API Documentation
|
|
46401
|
+
#
|
|
46402
|
+
class UpdateSpacePermissionsRequest < Struct.new(
|
|
46403
|
+
:aws_account_id,
|
|
46404
|
+
:space_id,
|
|
46405
|
+
:grant_permissions,
|
|
46406
|
+
:revoke_permissions)
|
|
46407
|
+
SENSITIVE = []
|
|
46408
|
+
include Aws::Structure
|
|
46409
|
+
end
|
|
46410
|
+
|
|
46411
|
+
# @!attribute [rw] space_id
|
|
46412
|
+
# The ID of the space.
|
|
46413
|
+
# @return [String]
|
|
46414
|
+
#
|
|
46415
|
+
# @!attribute [rw] space_arn
|
|
46416
|
+
# The ARN of the space.
|
|
46417
|
+
# @return [String]
|
|
46418
|
+
#
|
|
46419
|
+
# @!attribute [rw] permissions
|
|
46420
|
+
# The updated permissions for the space.
|
|
46421
|
+
# @return [Array<Types::ResourcePermission>]
|
|
46422
|
+
#
|
|
46423
|
+
# @!attribute [rw] request_id
|
|
46424
|
+
# The Amazon Web Services request ID for this operation.
|
|
46425
|
+
# @return [String]
|
|
46426
|
+
#
|
|
46427
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateSpacePermissionsResponse AWS API Documentation
|
|
46428
|
+
#
|
|
46429
|
+
class UpdateSpacePermissionsResponse < Struct.new(
|
|
46430
|
+
:space_id,
|
|
46431
|
+
:space_arn,
|
|
46432
|
+
:permissions,
|
|
46433
|
+
:request_id)
|
|
46434
|
+
SENSITIVE = []
|
|
46435
|
+
include Aws::Structure
|
|
46436
|
+
end
|
|
46437
|
+
|
|
46438
|
+
# @!attribute [rw] aws_account_id
|
|
46439
|
+
# The ID of the Amazon Web Services account that contains the space.
|
|
46440
|
+
# @return [String]
|
|
46441
|
+
#
|
|
46442
|
+
# @!attribute [rw] space_id
|
|
46443
|
+
# The ID of the space that you want to update.
|
|
46444
|
+
# @return [String]
|
|
46445
|
+
#
|
|
46446
|
+
# @!attribute [rw] name
|
|
46447
|
+
# A new display name for the space.
|
|
46448
|
+
# @return [String]
|
|
46449
|
+
#
|
|
46450
|
+
# @!attribute [rw] description
|
|
46451
|
+
# A new description for the space.
|
|
46452
|
+
# @return [String]
|
|
46453
|
+
#
|
|
46454
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateSpaceRequest AWS API Documentation
|
|
46455
|
+
#
|
|
46456
|
+
class UpdateSpaceRequest < Struct.new(
|
|
46457
|
+
:aws_account_id,
|
|
46458
|
+
:space_id,
|
|
46459
|
+
:name,
|
|
46460
|
+
:description)
|
|
46461
|
+
SENSITIVE = [:description]
|
|
46462
|
+
include Aws::Structure
|
|
46463
|
+
end
|
|
46464
|
+
|
|
46465
|
+
# @!attribute [rw] aws_account_id
|
|
46466
|
+
# The ID of the Amazon Web Services account that contains the space.
|
|
46467
|
+
# @return [String]
|
|
46468
|
+
#
|
|
46469
|
+
# @!attribute [rw] space_id
|
|
46470
|
+
# The ID of the space that you want to update resources for.
|
|
46471
|
+
# @return [String]
|
|
46472
|
+
#
|
|
46473
|
+
# @!attribute [rw] add_resources
|
|
46474
|
+
# A list of resources to add to the space.
|
|
46475
|
+
# @return [Array<Types::SpaceResourceOperation>]
|
|
46476
|
+
#
|
|
46477
|
+
# @!attribute [rw] remove_resources
|
|
46478
|
+
# A list of resources to remove from the space.
|
|
46479
|
+
# @return [Array<Types::SpaceResourceOperation>]
|
|
46480
|
+
#
|
|
46481
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateSpaceResourcesRequest AWS API Documentation
|
|
46482
|
+
#
|
|
46483
|
+
class UpdateSpaceResourcesRequest < Struct.new(
|
|
46484
|
+
:aws_account_id,
|
|
46485
|
+
:space_id,
|
|
46486
|
+
:add_resources,
|
|
46487
|
+
:remove_resources)
|
|
46488
|
+
SENSITIVE = []
|
|
46489
|
+
include Aws::Structure
|
|
46490
|
+
end
|
|
46491
|
+
|
|
46492
|
+
# @!attribute [rw] space_id
|
|
46493
|
+
# The ID of the space.
|
|
46494
|
+
# @return [String]
|
|
46495
|
+
#
|
|
46496
|
+
# @!attribute [rw] space_arn
|
|
46497
|
+
# The ARN of the space.
|
|
46498
|
+
# @return [String]
|
|
46499
|
+
#
|
|
46500
|
+
# @!attribute [rw] failed_resource_operations
|
|
46501
|
+
# A list of resource operations that failed.
|
|
46502
|
+
# @return [Array<Types::FailedSpaceResourceOperation>]
|
|
46503
|
+
#
|
|
46504
|
+
# @!attribute [rw] request_id
|
|
46505
|
+
# The Amazon Web Services request ID for this operation.
|
|
46506
|
+
# @return [String]
|
|
46507
|
+
#
|
|
46508
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateSpaceResourcesResponse AWS API Documentation
|
|
46509
|
+
#
|
|
46510
|
+
class UpdateSpaceResourcesResponse < Struct.new(
|
|
46511
|
+
:space_id,
|
|
46512
|
+
:space_arn,
|
|
46513
|
+
:failed_resource_operations,
|
|
46514
|
+
:request_id)
|
|
46515
|
+
SENSITIVE = []
|
|
46516
|
+
include Aws::Structure
|
|
46517
|
+
end
|
|
46518
|
+
|
|
46519
|
+
# @!attribute [rw] space_id
|
|
46520
|
+
# The ID of the space.
|
|
46521
|
+
# @return [String]
|
|
46522
|
+
#
|
|
46523
|
+
# @!attribute [rw] space_arn
|
|
46524
|
+
# The ARN of the space.
|
|
46525
|
+
# @return [String]
|
|
46526
|
+
#
|
|
46527
|
+
# @!attribute [rw] request_id
|
|
46528
|
+
# The Amazon Web Services request ID for this operation.
|
|
46529
|
+
# @return [String]
|
|
46530
|
+
#
|
|
46531
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/quicksight-2018-04-01/UpdateSpaceResponse AWS API Documentation
|
|
46532
|
+
#
|
|
46533
|
+
class UpdateSpaceResponse < Struct.new(
|
|
46534
|
+
:space_id,
|
|
46535
|
+
:space_arn,
|
|
46536
|
+
:request_id)
|
|
46537
|
+
SENSITIVE = []
|
|
46538
|
+
include Aws::Structure
|
|
46539
|
+
end
|
|
46540
|
+
|
|
44156
46541
|
# @!attribute [rw] aws_account_id
|
|
44157
46542
|
# The ID of the Amazon Web Services account that contains the template
|
|
44158
46543
|
# alias that you're updating.
|