Class: Aws::CloudSearch::Types::DescribeServiceAccessPoliciesRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-cloudsearch/types.rb

Overview

Note:

When making an API call, you may pass DescribeServiceAccessPoliciesRequest data as a hash:

{
  domain_name: "DomainName", # required
  deployed: false,
}

Container for the parameters to the ‘DescribeServiceAccessPolicies` operation. Specifies the name of the domain you want to describe. To show the active configuration and exclude any pending changes, set the `Deployed` option to `true`.

Instance Attribute Summary collapse

Instance Attribute Details

#deployedBoolean

Whether to display the deployed configuration (‘true`) or include any pending changes (`false`). Defaults to `false`.

Returns:

  • (Boolean)


1126
1127
1128
1129
1130
# File 'lib/aws-sdk-cloudsearch/types.rb', line 1126

class DescribeServiceAccessPoliciesRequest < Struct.new(
  :domain_name,
  :deployed)
  include Aws::Structure
end

#domain_nameString

The name of the domain you want to describe.

Returns:

  • (String)


1126
1127
1128
1129
1130
# File 'lib/aws-sdk-cloudsearch/types.rb', line 1126

class DescribeServiceAccessPoliciesRequest < Struct.new(
  :domain_name,
  :deployed)
  include Aws::Structure
end