Class: Aws::ChimeSDKMeetings::Client
- Inherits:
-
Seahorse::Client::Base
- Object
- Seahorse::Client::Base
- Aws::ChimeSDKMeetings::Client
- Includes:
- Aws::ClientStubs
- Defined in:
- lib/aws-sdk-chimesdkmeetings/client.rb
Overview
An API client for ChimeSDKMeetings. To construct a client, you need to configure a ‘:region` and `:credentials`.
client = Aws::ChimeSDKMeetings::Client.new(
region: region_name,
credentials: credentials,
# ...
)
For details on configuring region and credentials see the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
See #initialize for a full list of supported configuration options.
Class Attribute Summary collapse
- .identifier ⇒ Object readonly private
API Operations collapse
-
#batch_create_attendee(params = {}) ⇒ Types::BatchCreateAttendeeResponse
Creates up to 100 attendees for an active Amazon Chime SDK meeting.
-
#batch_update_attendee_capabilities_except(params = {}) ⇒ Struct
Updates ‘AttendeeCapabilities` except the capabilities listed in an `ExcludedAttendeeIds` table.
-
#create_attendee(params = {}) ⇒ Types::CreateAttendeeResponse
Creates a new attendee for an active Amazon Chime SDK meeting.
-
#create_meeting(params = {}) ⇒ Types::CreateMeetingResponse
Creates a new Amazon Chime SDK meeting in the specified media Region with no initial attendees.
-
#create_meeting_with_attendees(params = {}) ⇒ Types::CreateMeetingWithAttendeesResponse
Creates a new Amazon Chime SDK meeting in the specified media Region, with attendees.
-
#delete_attendee(params = {}) ⇒ Struct
Deletes an attendee from the specified Amazon Chime SDK meeting and deletes their ‘JoinToken`.
-
#delete_meeting(params = {}) ⇒ Struct
Deletes the specified Amazon Chime SDK meeting.
-
#get_attendee(params = {}) ⇒ Types::GetAttendeeResponse
Gets the Amazon Chime SDK attendee details for a specified meeting ID and attendee ID.
-
#get_meeting(params = {}) ⇒ Types::GetMeetingResponse
Gets the Amazon Chime SDK meeting details for the specified meeting ID.
-
#list_attendees(params = {}) ⇒ Types::ListAttendeesResponse
Lists the attendees for the specified Amazon Chime SDK meeting.
-
#list_tags_for_resource(params = {}) ⇒ Types::ListTagsForResourceResponse
Returns a list of the tags available for the specified resource.
-
#start_meeting_transcription(params = {}) ⇒ Struct
Starts transcription for the specified ‘meetingId`.
-
#stop_meeting_transcription(params = {}) ⇒ Struct
Stops transcription for the specified ‘meetingId`.
-
#tag_resource(params = {}) ⇒ Struct
The resource that supports tags.
-
#untag_resource(params = {}) ⇒ Struct
Removes the specified tags from the specified resources.
-
#update_attendee_capabilities(params = {}) ⇒ Types::UpdateAttendeeCapabilitiesResponse
The capabilities that you want to update.
Class Method Summary collapse
- .errors_module ⇒ Object private
Instance Method Summary collapse
- #build_request(operation_name, params = {}) ⇒ Object private
-
#initialize(options) ⇒ Client
constructor
A new instance of Client.
- #waiter_names ⇒ Object deprecated private Deprecated.
Constructor Details
#initialize(options) ⇒ Client
Returns a new instance of Client.
444 445 446 |
# File 'lib/aws-sdk-chimesdkmeetings/client.rb', line 444 def initialize(*args) super end |
Class Attribute Details
.identifier ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
1582 1583 1584 |
# File 'lib/aws-sdk-chimesdkmeetings/client.rb', line 1582 def identifier @identifier end |
Class Method Details
.errors_module ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
1585 1586 1587 |
# File 'lib/aws-sdk-chimesdkmeetings/client.rb', line 1585 def errors_module Errors end |
Instance Method Details
#batch_create_attendee(params = {}) ⇒ Types::BatchCreateAttendeeResponse
Creates up to 100 attendees for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see [Using the Amazon Chime SDK] in the *Amazon Chime Developer Guide*.
504 505 506 507 |
# File 'lib/aws-sdk-chimesdkmeetings/client.rb', line 504 def batch_create_attendee(params = {}, = {}) req = build_request(:batch_create_attendee, params) req.send_request() end |
#batch_update_attendee_capabilities_except(params = {}) ⇒ Struct
Updates ‘AttendeeCapabilities` except the capabilities listed in an `ExcludedAttendeeIds` table.
<note markdown=“1”> You use the capabilities with a set of values that control what the capabilities can do, such as ‘SendReceive` data. For more information about those values, see .
</note>
When using capabilities, be aware of these corner cases:
-
If you specify ‘MeetingFeatures:Video:MaxResolution:None` when you create a meeting, all API requests that include `SendReceive`, `Send`, or `Receive` for `AttendeeCapabilities:Video` will be rejected with `ValidationError 400`.
-
If you specify ‘MeetingFeatures:Content:MaxResolution:None` when you create a meeting, all API requests that include `SendReceive`, `Send`, or `Receive` for `AttendeeCapabilities:Content` will be rejected with `ValidationError 400`.
-
You can’t set ‘content` capabilities to `SendReceive` or `Receive` unless you also set `video` capabilities to `SendReceive` or `Receive`. If you don’t set the ‘video` capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your `video` capability to receive and you set your `content` capability to not receive.
-
When you change an ‘audio` capability from `None` or `Receive` to `Send` or `SendReceive` , and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants.
-
When you change a ‘video` or `content` capability from `None` or `Receive` to `Send` or `SendReceive` , and if the attendee turned on their video or content streams, remote attendees can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.
581 582 583 584 |
# File 'lib/aws-sdk-chimesdkmeetings/client.rb', line 581 def batch_update_attendee_capabilities_except(params = {}, = {}) req = build_request(:batch_update_attendee_capabilities_except, params) req.send_request() end |
#build_request(operation_name, params = {}) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 |
# File 'lib/aws-sdk-chimesdkmeetings/client.rb', line 1555 def build_request(operation_name, params = {}) handlers = @handlers.for(operation_name) tracer = config.telemetry_provider.tracer_provider.tracer( Aws::Telemetry.module_to_tracer_name('Aws::ChimeSDKMeetings') ) context = Seahorse::Client::RequestContext.new( operation_name: operation_name, operation: config.api.operation(operation_name), client: self, params: params, config: config, tracer: tracer ) context[:gem_name] = 'aws-sdk-chimesdkmeetings' context[:gem_version] = '1.44.0' Seahorse::Client::Request.new(handlers, context) end |
#create_attendee(params = {}) ⇒ Types::CreateAttendeeResponse
Creates a new attendee for an active Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see [Using the Amazon Chime SDK] in the *Amazon Chime Developer Guide*.
676 677 678 679 |
# File 'lib/aws-sdk-chimesdkmeetings/client.rb', line 676 def create_attendee(params = {}, = {}) req = build_request(:create_attendee, params) req.send_request() end |
#create_meeting(params = {}) ⇒ Types::CreateMeetingResponse
Creates a new Amazon Chime SDK meeting in the specified media Region with no initial attendees. For more information about specifying media Regions, see [Amazon Chime SDK Media Regions] in the *Amazon Chime Developer Guide*. For more information about the Amazon Chime SDK, see
- Using the Amazon Chime SDK][2
-
in the *Amazon Chime Developer Guide*.
[1]: docs.aws.amazon.com/chime/latest/dg/chime-sdk-meetings-regions.html [2]: docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
857 858 859 860 |
# File 'lib/aws-sdk-chimesdkmeetings/client.rb', line 857 def create_meeting(params = {}, = {}) req = build_request(:create_meeting, params) req.send_request() end |
#create_meeting_with_attendees(params = {}) ⇒ Types::CreateMeetingWithAttendeesResponse
Creates a new Amazon Chime SDK meeting in the specified media Region, with attendees. For more information about specifying media Regions, see [Amazon Chime SDK Media Regions] in the *Amazon Chime Developer Guide*. For more information about the Amazon Chime SDK, see [Using the Amazon Chime SDK] in the *Amazon Chime Developer Guide*.
[1]: docs.aws.amazon.com/chime/latest/dg/chime-sdk-meetings-regions.html [2]: docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
1015 1016 1017 1018 |
# File 'lib/aws-sdk-chimesdkmeetings/client.rb', line 1015 def create_meeting_with_attendees(params = {}, = {}) req = build_request(:create_meeting_with_attendees, params) req.send_request() end |
#delete_attendee(params = {}) ⇒ Struct
Deletes an attendee from the specified Amazon Chime SDK meeting and deletes their ‘JoinToken`. Attendees are automatically deleted when a Amazon Chime SDK meeting is deleted. For more information about the Amazon Chime SDK, see [Using the Amazon Chime SDK] in the *Amazon Chime Developer Guide*.
1049 1050 1051 1052 |
# File 'lib/aws-sdk-chimesdkmeetings/client.rb', line 1049 def delete_attendee(params = {}, = {}) req = build_request(:delete_attendee, params) req.send_request() end |
#delete_meeting(params = {}) ⇒ Struct
Deletes the specified Amazon Chime SDK meeting. The operation deletes all attendees, disconnects all clients, and prevents new clients from joining the meeting. For more information about the Amazon Chime SDK, see [Using the Amazon Chime SDK] in the *Amazon Chime Developer Guide*.
1079 1080 1081 1082 |
# File 'lib/aws-sdk-chimesdkmeetings/client.rb', line 1079 def delete_meeting(params = {}, = {}) req = build_request(:delete_meeting, params) req.send_request() end |
#get_attendee(params = {}) ⇒ Types::GetAttendeeResponse
Gets the Amazon Chime SDK attendee details for a specified meeting ID and attendee ID. For more information about the Amazon Chime SDK, see
- Using the Amazon Chime SDK][1
-
in the *Amazon Chime Developer Guide*.
1122 1123 1124 1125 |
# File 'lib/aws-sdk-chimesdkmeetings/client.rb', line 1122 def get_attendee(params = {}, = {}) req = build_request(:get_attendee, params) req.send_request() end |
#get_meeting(params = {}) ⇒ Types::GetMeetingResponse
Gets the Amazon Chime SDK meeting details for the specified meeting ID. For more information about the Amazon Chime SDK, see [Using the Amazon Chime SDK] in the *Amazon Chime Developer Guide*.
1175 1176 1177 1178 |
# File 'lib/aws-sdk-chimesdkmeetings/client.rb', line 1175 def get_meeting(params = {}, = {}) req = build_request(:get_meeting, params) req.send_request() end |
#list_attendees(params = {}) ⇒ Types::ListAttendeesResponse
Lists the attendees for the specified Amazon Chime SDK meeting. For more information about the Amazon Chime SDK, see [Using the Amazon Chime SDK] in the *Amazon Chime Developer Guide*.
[1]: docs.aws.amazon.com/chime/latest/dg/meetings-sdk.html
The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.
1227 1228 1229 1230 |
# File 'lib/aws-sdk-chimesdkmeetings/client.rb', line 1227 def list_attendees(params = {}, = {}) req = build_request(:list_attendees, params) req.send_request() end |
#list_tags_for_resource(params = {}) ⇒ Types::ListTagsForResourceResponse
Returns a list of the tags available for the specified resource.
1257 1258 1259 1260 |
# File 'lib/aws-sdk-chimesdkmeetings/client.rb', line 1257 def (params = {}, = {}) req = build_request(:list_tags_for_resource, params) req.send_request() end |
#start_meeting_transcription(params = {}) ⇒ Struct
Starts transcription for the specified ‘meetingId`. For more information, refer to [ Using Amazon Chime SDK live transcription ][1] in the *Amazon Chime SDK Developer Guide*.
If you specify an invalid configuration, a ‘TranscriptFailed` event will be sent with the contents of the `BadRequestException` generated by Amazon Transcribe. For more information on each parameter and which combinations are valid, refer to the [StartStreamTranscription] API in the *Amazon Transcribe Developer Guide*.
<note markdown=“1”> By default, Amazon Transcribe may use and store audio content processed by the service to develop and improve Amazon Web Services AI/ML services as further described in section 50 of the [Amazon Web Services Service Terms]. Using Amazon Transcribe may be subject to federal and state laws or regulations regarding the recording or interception of electronic communications. It is your and your end users’ responsibility to comply with all applicable laws regarding the recording, including properly notifying all participants in a recorded session or communication that the session or communication is being recorded, and obtaining all necessary consents. You can opt out from Amazon Web Services using audio content to develop and improve AWS AI/ML services by configuring an AI services opt out policy using Amazon Web Services Organizations.
</note>
[1]: docs.aws.amazon.com/chime-sdk/latest/dg/meeting-transcription.html [2]: docs.aws.amazon.com/transcribe/latest/APIReference/API_streaming_StartStreamTranscription.html [3]: aws.amazon.com/service-terms/
1342 1343 1344 1345 |
# File 'lib/aws-sdk-chimesdkmeetings/client.rb', line 1342 def start_meeting_transcription(params = {}, = {}) req = build_request(:start_meeting_transcription, params) req.send_request() end |
#stop_meeting_transcription(params = {}) ⇒ Struct
Stops transcription for the specified ‘meetingId`. For more information, refer to [ Using Amazon Chime SDK live transcription ][1] in the *Amazon Chime SDK Developer Guide*.
By default, Amazon Transcribe may use and store audio content processed by the service to develop and improve Amazon Web Services AI/ML services as further described in section 50 of the [Amazon Web Services Service Terms]. Using Amazon Transcribe may be subject to federal and state laws or regulations regarding the recording or interception of electronic communications. It is your and your end users’ responsibility to comply with all applicable laws regarding the recording, including properly notifying all participants in a recorded session or communication that the session or communication is being recorded, and obtaining all necessary consents. You can opt out from Amazon Web Services using audio content to develop and improve Amazon Web Services AI/ML services by configuring an AI services opt out policy using Amazon Web Services Organizations.
[1]: docs.aws.amazon.com/chime-sdk/latest/dg/meeting-transcription.html [2]: aws.amazon.com/service-terms/
1385 1386 1387 1388 |
# File 'lib/aws-sdk-chimesdkmeetings/client.rb', line 1385 def stop_meeting_transcription(params = {}, = {}) req = build_request(:stop_meeting_transcription, params) req.send_request() end |
#tag_resource(params = {}) ⇒ Struct
The resource that supports tags.
1416 1417 1418 1419 |
# File 'lib/aws-sdk-chimesdkmeetings/client.rb', line 1416 def tag_resource(params = {}, = {}) req = build_request(:tag_resource, params) req.send_request() end |
#untag_resource(params = {}) ⇒ Struct
Removes the specified tags from the specified resources. When you specify a tag key, the action removes both that key and its associated value. The operation succeeds even if you attempt to remove tags from a resource that were already removed. Note the following:
-
To remove tags from a resource, you need the necessary permissions for the service that the resource belongs to as well as permissions for removing tags. For more information, see the documentation for the service whose resource you want to untag.
-
You can only tag resources that are located in the specified Amazon Web Services Region for the calling Amazon Web Services account.
**Minimum permissions**
In addition to the ‘tag:UntagResources` permission required by this operation, you must also have the remove tags permission defined by the service that created the resource. For example, to remove the tags from an Amazon EC2 instance using the `UntagResources` operation, you must have both of the following permissions:
‘tag:UntagResource`
‘ChimeSDKMeetings:DeleteTags`
1465 1466 1467 1468 |
# File 'lib/aws-sdk-chimesdkmeetings/client.rb', line 1465 def untag_resource(params = {}, = {}) req = build_request(:untag_resource, params) req.send_request() end |
#update_attendee_capabilities(params = {}) ⇒ Types::UpdateAttendeeCapabilitiesResponse
The capabilities that you want to update.
<note markdown=“1”> You use the capabilities with a set of values that control what the capabilities can do, such as ‘SendReceive` data. For more information about those values, see .
</note>
When using capabilities, be aware of these corner cases:
-
If you specify ‘MeetingFeatures:Video:MaxResolution:None` when you create a meeting, all API requests that include `SendReceive`, `Send`, or `Receive` for `AttendeeCapabilities:Video` will be rejected with `ValidationError 400`.
-
If you specify ‘MeetingFeatures:Content:MaxResolution:None` when you create a meeting, all API requests that include `SendReceive`, `Send`, or `Receive` for `AttendeeCapabilities:Content` will be rejected with `ValidationError 400`.
-
You can’t set ‘content` capabilities to `SendReceive` or `Receive` unless you also set `video` capabilities to `SendReceive` or `Receive`. If you don’t set the ‘video` capability to receive, the response will contain an HTTP 400 Bad Request status code. However, you can set your `video` capability to receive and you set your `content` capability to not receive.
-
When you change an ‘audio` capability from `None` or `Receive` to `Send` or `SendReceive` , and if the attendee left their microphone unmuted, audio will flow from the attendee to the other meeting participants.
-
When you change a ‘video` or `content` capability from `None` or `Receive` to `Send` or `SendReceive` , and if the attendee turned on their video or content streams, remote attendees can receive those streams, but only after media renegotiation between the client and the Amazon Chime back-end server.
1546 1547 1548 1549 |
# File 'lib/aws-sdk-chimesdkmeetings/client.rb', line 1546 def update_attendee_capabilities(params = {}, = {}) req = build_request(:update_attendee_capabilities, params) req.send_request() end |
#waiter_names ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
1575 1576 1577 |
# File 'lib/aws-sdk-chimesdkmeetings/client.rb', line 1575 def waiter_names [] end |